| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125173 | 杨婉滢 | 7的倍数 | C++ | Accepted | 100 | 0 MS | 252 KB | 177 | 2024-01-23 16:31:15 |
#include<iostream> using namespace std; int main() { int a; cin>>a; if(a%7==0){ cout<<"yes"<<endl; } else { cout<<"no"<<endl; } return 0; }