| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 20294 | 张熠欣 | 判断闰年 | C++ | Accepted | 100 | 0 MS | 252 KB | 193 | 2021-06-07 20:11:16 |
#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; }