Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
106638 6倪葭轩 08判断是否为闰年 Python3 Accepted 38 MS 3760 KB 99 2025-01-16 14:30:41

Tests(11/11):


Code:

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