| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 330926 | 路明泽 | [在线测评解答教程] 闰年 | C++ | Compile Error | 0 | 0 MS | 0 KB | 185 | 2025-07-11 12:30:47 |
t = int(input()) for _ in range(t): year = int(input()) if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0): print("Yes") else: print("No")