| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 80532 | sh25_zhuhy | 字符串 | C++ | 解答错误 | 0 MS | 244 KB | 247 | 2026-01-04 15:20:46 |
#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<<"cba"; return 0; }