Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
105172 | 丁俊杰 | 08判断是否为闰年 | Python3 | Wrong Answer | 36 MS | 3756 KB | 97 | 2025-01-12 16:18:29 |
n=int(input()) if (n%4==0 and n%100!=0) or n%400==0: print(n,"Yes") else: print("No")
------Input------
2100
------Answer-----
2100 No
------Your output-----
No