Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
116786 张亦瑞 08判断是否为闰年 Python3 Accepted 47 MS 3744 KB 113 2025-04-12 14:33:36

Tests(11/11):


Code:

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