| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154230 | 李沐阳 | 判断闰年I | C++ | Accepted | 1 MS | 272 KB | 218 | 2026-05-27 21:20:27 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n%4==0&&n%100!=0||n%400==0) cout<<"leap year"<<endl; else cout<<"not leap year"<<endl; return 0; }