| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 139647 | 万明宇 | [在线测评解答教程] 闰年 | Python3 | Wrong Answer | 30 MS | 3768 KB | 175 | 2025-12-08 16:34:35 |
# 读取输入的年份 year = int(input()) # 判断是否为闰年 if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0): print("yes") else: print("no")
------Input------
2 2023 3059
------Answer-----
No No
------Your output-----
no