Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94115 余泽越 08判断是否为闰年 Python3 Wrong Answer 34 MS 3740 KB 91 2024-10-19 19:23:41

Tests(0/11):


Code:

a = input() b = int(a) if b/4 == 0: print(b,"Yes") else: print(b,"No")


Run Info:

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