| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144724 | 8 | 08有几个闰年 | C++ | Output Limit Exceeded | 9 MS | 268 KB | 289 | 2026-01-24 15:55:31 |
#include<iostream> using namespace std; int main(){ int n; int a=0; while(3){ cin>>n; if(n%400==0||(n%4==0&&n%100!=0)){ cout<<"Yes"<<endl; int a=a+1; } else{ cout<<"No"<<endl; } } return 0; }