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

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