Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128137 赵乘浩 勾股数 Python3 Compile Error 0 MS 0 KB 161 2025-08-03 09:15:44

Tests(0/0):


Code:

s=0 for a in range(1,100 ): for b in range(a+1,100): for c in range(b+1,100): ifa**2+b**2+c**2: print(a,b,c) s+=1 print(s)


Run Info:

Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 4)