| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 313998 | 梁睿煊 | 【C1-8】判断闰年 | C++ | Wrong Answer | 75 | 1 MS | 252 KB | 204 | 2025-03-23 18:38:31 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n%4==0){ cout<<"yes"; } else if(n%400==0&&n%100!=0){ cout<<"yes"; } else{ cout<<"no"; } return 0; }