| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 128805 | 叶航帅 | [在线测评解答教程] 闰年 | Python3 | Wrong Answer | 48 MS | 3760 KB | 236 | 2025-08-19 20:33:17 |
t = int(input()) if t % 4 == 0: if t % 100 == 0: if t % 400 == 0: print('是闰年') else: print('不是闰年') else: print('是闰年') else: print('不是闰年')
------Input------
2 2023 3059
------Answer-----
No No
------Your output-----