Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144140 贺洁 08判断是否为闰年 Python3 Wrong Answer 30 MS 3748 KB 190 2026-01-19 16:23:48

Tests(0/11):


Code:

i = int(input()) if i % 100 == 0: if i % 400 == 0: print("Yes") else: print("No") else: if i % 4 ==0: print("Yes") else: print("No")


Run Info:

------Input------
3264
------Answer-----
3264 Yes
------Your output-----
Yes