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

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