| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144903 | c13 | 08有几个闰年 | C++ | Wrong Answer | 104 MS | 268 KB | 227 | 2026-01-24 19:28:41 |
#include<bits/stdc++.h> using namespace std; int main(){ int t,a,sum=0; scanf("%d", &t); while (t--) { scanf("%d", &a); if((a%4==0&&a%100!=0)||a%400==0)sum++; }cout<<sum<<endl; return 0; }
------Input------
2745 3218 3660
------Answer-----
1
------Your output-----
2744