| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125160 | 枫原万叶·原神·米哈游 | 判断闰年 | C++ | Accepted | 100 | 0 MS | 240 KB | 195 | 2024-01-23 16:30:11 |
#include<bits/stdc++.h> 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; }