Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144188 谢尚昊 08判断是否为闰年 Python3 Wrong Answer 31 MS 3748 KB 144 2026-01-19 23:16:03

Tests(1/11):


Code:

year=int(input()) if year%400==0: print(year,"Yes") elif year%400!=0 and year%4==0: print(year,"Yes") else: print(year,"No")


Run Info:

------Input------
2100
------Answer-----
2100 No
------Your output-----
2100 Yes