Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94822 周楚航 判断闰年I Python3 Wrong Answer 37 MS 3732 KB 133 2024-10-26 14:19:47

Tests(0/1):


Code:

a = input() a=int(a) if a % 4 !=0 and a % 100 != 0 or a % 400 == 0: print("leap year") else: print("not leap year")


Run Info:

------Input------
2012
------Answer-----
leap year
------Your output-----
not leap year