| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144136 | 夏宇航 | 08判断是否为闰年 | Python3 | Wrong Answer | 29 MS | 3752 KB | 134 | 2026-01-19 16:13:59 |
n = int(input('')) if (n % 4 == 0 and n % 100 != 0) or (n % 400 == 0): print(str(n) + 'yes') else: print(str(n) + 'no')
------Input------
3264
------Answer-----
3264 Yes
------Your output-----
3264yes