| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 80273 | sh25_zhuhy | 最大的矩形纸片 | C++ | 通过 | 0 MS | 240 KB | 243 | 2026-01-04 15:11:02 |
#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<<8; return 0; }