| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 47107 | 杨中琦 | 判断3的倍数 | C++ | Accepted | 100 | 0 MS | 248 KB | 137 | 2022-07-14 11:15:29 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a%3==0) cout<<"Yes"; else cout<<"No"; return 0; }