| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125314 | 唐钧 | 判断闰年 | C++ | Accepted | 100 | 0 MS | 252 KB | 272 | 2024-01-23 16:43:35 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if(n % 4 == 0){ if(n % 100 == 0){ if(n % 400 == 0) cout << "Y\n"; else cout << "N\n"; } else cout << "Y\n"; } else cout << "N\n"; return 0; }