Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94118 余泽越 08判断是否为闰年 Python3 Accepted 40 MS 3760 KB 114 2024-10-19 19:25:55

Tests(11/11):


Code:

a = input() b = int(a) if b%4 == 0 and b%100 != 0 or b%400 == 0: print(b,"Yes") else: print(b,"No")