| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125051 | 张航 | 判断闰年 | C++ | Accepted | 100 | 0 MS | 252 KB | 144 | 2024-01-23 16:21:49 |
#include<iostream> using namespace std; int main(){ int a; cin>>a; if(a%4==0&&a%100!=0||a%400==0) cout<<"Y"; else cout<<"N"; return 0; }