| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 80699 | sh25_zhangyy | 判断一个数能否同时被3和5整除 | C++ | Accepted | 0 MS | 240 KB | 201 | 2026-01-04 15:28:08 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n%15==0){ cout<<"YES"; } else{ cout<<"NO"; } return 0; }