| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 89402 | sh25_shengmy | 判断闰年 | C++ | Accepted | 0 MS | 252 KB | 182 | 2026-06-05 14:20:33 |
#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; }