Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
88686 | 空 | 08判断是否为闰年 | Python3 | Wrong Answer | 34 MS | 3748 KB | 128 | 2024-08-20 14:52:32 |
year = int(input()) if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0: print(year,'Yes') else: print('No')
------Input------
2100
------Answer-----
2100 No
------Your output-----
No