| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 20931 | 邱修齐 | 判断闰年 | C++ | Wrong Answer | 0 | 0 MS | 248 KB | 167 | 2021-06-22 20:00:31 |
#include<bits/stdc++.h> using namespace std; int main(){ long long a; cin>>a; if((a%4==0&&a%100!=0)||(a%400==0)) cout<<"Yes"; else cout<<"N0"; return 0; }