Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
106633 6倪葭轩 08判断是否为闰年 Python3 Wrong Answer 36 MS 3744 KB 93 2025-01-16 14:29:11

Tests(0/11):


Code:

y=int(input()) if y%400==0 or y%4==0 and y%100!=0: print('Yes') else: print('No')


Run Info:

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