Run ID:129056
提交时间:2025-08-21 16:33:16
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")