| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 378359 | 王璟源 | 【C1-12】今年天数 | C++ | Wrong Answer | 33 | 2 MS | 244 KB | 228 | 2026-02-09 17:19:26 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n%100==0){ cout<<"366"; }else if(n%400==0){ cout<<"366"; }else if(n%4==0){ cout<<"366"; }else{ cout<<"365"; } return 0; }