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

Tests(0/11):


Code:

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


Run Info:

------Input------
3264
------Answer-----
3264 Yes
------Your output-----
3264 No