| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134182 | 赵乘浩 | 完美立方 | Python3 | Compile Error | 0 MS | 0 KB | 243 | 2025-10-25 22:12:42 |
N = int(input()) for a in range(2, N+1): for b in range(2, N+1): for c in range(b, N+1): for d in range(c, N+1): if a**3==b**3+c**3+d**3: print(f"Cube={a},Triple=({b},{c},{d})")
File "Main.py", line 7
print(f"Cube={a},Triple=({b},{c},{d})")
^
SyntaxError: invalid syntax