| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 81381 | sh25_wuyy | 判断一个数能否同时被3和5整除 | C++ | Accepted | 0 MS | 248 KB | 179 | 2026-01-04 17:27:30 |
#include <iostream>; using namespace std; int main(){ int n; cin>>n; if(n%3==0&&n%5==0){ cout<<"YES"; }else{ cout<<"NO"; }return 0; }