| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 311081 | 郑宸煜 | 【C1-8】判断闰年 | C++ | Wrong Answer | 75 | 1 MS | 252 KB | 142 | 2025-03-05 20:23:42 |
#include <iostream> using namespace std; int main(){ int n; cin>>n; if(n%4==0) cout<<"yes"; else cout<<"no"; return 0; }