| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 70320 | sh25_wangtaojie | 判断一个数能否同时被3和5整除 | C++ | Accepted | 0 MS | 248 KB | 200 | 2025-10-17 15:23:36 |
#include <iostream> using namespace std; int main() { int a; cin>>a; if(a%3==0&&a%5==0) { cout<<"YES"; } else { cout<<"NO"; } return 0; }