Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134180 赵乘浩 完美立方 Python3 Compile Error 0 MS 0 KB 236 2025-10-25 22:11:18

Tests(0/0):


Code:

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})")


Run Info:

Sorry: IndentationError: expected an indented block (Main.py, line 7)