| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76727 | sh25_zhuwy | 判断能否被3、5、7整除 | C++ | Accepted | 0 MS | 240 KB | 195 | 2025-12-19 16:38:55 |
#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; bool i=(a%3==0&&a%5==0&&a%7==0); if (i) { cout<<"Yes"; } else { cout<<"No"; } return 0; }