Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
116780 6倪葭轩 08判断是否为闰年 Python3 Accepted 39 MS 3756 KB 99 2025-04-12 14:25:03

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')