| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125107 | 汤雨帆 | 7的倍数 | C++ | Accepted | 100 | 0 MS | 240 KB | 163 | 2024-01-23 16:25:48 |
#include<iostream> #include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a%7==0) cout<<"yes"; if(a%7!=0) cout<<"no"; }