| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 20273 | 张承志 | 判断闰年 | C++ | Accepted | 100 | 0 MS | 252 KB | 195 | 2021-06-06 18:18:13 |
#include<bits/stdc++.h> using namespace std; int main(){ int y; cin>>y; if(y%4==0){ if(y%100==0&&y%400!=0) cout<<"No"; else cout<<"Yes"; }else{ cout<<"No"; } return 0; }