Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129387 叶航帅 08判断是否为闰年 Python3 Wrong Answer 48 MS 3752 KB 204 2025-08-24 21:10:48

Tests(0/11):


Code:

t = int(input()) if t % 4 == 0: if t % 100 == 0: if t % 400 == 0: print('Yes') else: print('No') else: print('Yes') else: print('No')


Run Info:

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