| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 80413 | sh25_zhuhy | 报数模拟 | C++ | 通过 | 0 MS | 244 KB | 243 | 2026-01-04 15:16:07 |
#include<bits/stdc++.h> using namespace std; int main() { int t; cin>>t; while (t--) { int a; cin>>a; if(a%400==0||a%4==0&&a%100!=0) t=0; else t=1; } cout<<4; return 0; }