| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145902 | 冰块ee | 08判断是否为闰年 | C++ | Compile Error | 0 MS | 0 KB | 205 | 2026-01-25 19:30:41 |
tt = int(input()) for _ in range(tt): year = int(input()) if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0): print("Yes") else: print("No")
Main.cc:1:1: error: 'tt' does not name a type tt = int(input()) ^