| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125369 | 刘一诺 | 判断闰年 | C++ | Accepted | 100 | 0 MS | 248 KB | 164 | 2024-01-23 16:50:13 |
#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; }