Run ID:151598
提交时间:2026-04-15 17:13:06
t = int(input()) for _ in range(t): n = int(input()) if (n % 4 == 0 and n % 100 != 0) or (n % 400 == 0): print("Yes") else: print("No")