Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129056 叶航帅 [在线测评解答教程] 闰年 Python3 Accepted 66 MS 3772 KB 173 2025-08-21 16:33:16

Tests(11/11):


Code:

t = int(input()) for _ in range(t): n = int(input()) if n % 400 == 0 or (n % 4 == 0 and n % 100 != 0): print("Yes") else: print("No")