Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95094 谭景年 08判断是否为闰年 Python3 Accepted 40 MS 3772 KB 114 2024-10-26 18:54:48

Tests(11/11):


Code:

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