Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95091 谭景年 08判断是否为闰年 Python3 Wrong Answer 36 MS 3740 KB 108 2024-10-26 18:48:15

Tests(0/11):


Code:

s=input().split() a=int(s[0]) if a/4==0 or a/100 and a//400: print(a,"yes") else: print(a,"no")


Run Info:

------Input------
3264
------Answer-----
3264 Yes
------Your output-----
3264 yes