| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 128804 | 叶航帅 | [在线测评解答教程] 闰年 | Python3 | Wrong Answer | 51 MS | 3752 KB | 333 | 2025-08-19 20:32:28 |
t = int(input()) if t % 4 == 0: if t % 100 == 0: if t % 400 == 0: print('是闰年') else: print('不是闰年') else: # 能被4整除但不能被100整除的是闰年 print('是闰年') else: # 不能被4整除的不是闰年 print('不是闰年')
------Input------
2 2023 3059
------Answer-----
No No
------Your output-----