Run ID:110756
提交时间:2025-02-23 12:18:31
t = int(input()) for _ in range(t): n = int(input()) print("Yes" if (n % 4 == 0 and n % 100 != 0) or n % 400 == 0 else "No")