| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 77497 | sh25_zhangjiajia | 判断闰年 | C++ | Accepted | 0 MS | 244 KB | 326 | 2025-12-26 14:18:54 |
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if(n%4==0) { if(n%100==0&&n%400!=0) { cout << "N"; } else { cout << "Y"; } } else { cout << "N"; } return 0; }