Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
105173 丁俊杰 08判断是否为闰年 Python3 Accepted 40 MS 3768 KB 99 2025-01-12 16:19:33

Tests(11/11):


Code:

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