Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94882 余睿毅 判断闰年I Python3 Accepted 41 MS 3760 KB 126 2024-10-26 14:58:29

Tests(1/1):


Code:

a=input().split() b=int(a[0]) if b%4==0 and b%100>=1 or b%400==0: print("leap year") else: print("not leap year")