Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
116782 | 江屹山 | 08判断是否为闰年 | Python3 | Wrong Answer | 35 MS | 3756 KB | 118 | 2025-04-12 14:30:25 |
year=int(input()) if (year%4==0 and year%100!=0) or year%400==0: print(year,'Yas') else: print(year, 'No')
------Input------
3264
------Answer-----
3264 Yes
------Your output-----
3264 Yas