Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94303 王晨鑫 08判断是否为闰年 Python3 Wrong Answer 33 MS 3752 KB 93 2024-10-20 11:22:12

Tests(0/11):


Code:

q=input().split() n=q[0] n=int(n) if n%4==0: print(n,"yes") else: print(n,"no")


Run Info:

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