| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 123650 | 柯轶炜 | 判断闰年I | Python3 | Wrong Answer | 35 MS | 3716 KB | 143 | 2025-07-08 21:14:50 |
def is_leap_year(year): if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0): return True else: return False
------Input------
2012
------Answer-----
leap year
------Your output-----