| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 85061 | sh25_zhuhy | 判断闰年 | C++ | Accepted | 0 MS | 248 KB | 184 | 2026-03-06 14:47:23 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a%4==0&&a%100!=0) cout<<"yes"; else cout<<"no"; return 0; }