Run ID:132967
提交时间:2025-10-12 18:05:16
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")