| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 124882 | 江婉儿 | 7的倍数 | C++ | Accepted | 100 | 0 MS | 232 KB | 143 | 2024-01-23 16:05:52 |
#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; if(a%7==0) cout<<"yes"; else cout<<"no"; return 0; }