Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
318569 沈洛楠 【C1-8】判断闰年 Python3 通过 100 57 MS 3748 KB 95 2025-04-19 16:06:27

Tests(4/4):


n=int(input()) if n%4==0 and n%100!=0 or n%400==0: print("yes") else: print("no")


测评信息: