| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5803 | 王梓 | 判断3的倍数 | C++ | Accepted | 100 | 0 MS | 244 KB | 137 | 2020-08-15 08:46:36 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n%3==0) cout<<"Yes"; else cout<<"No"; return 0; }