| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 121696 | 赵乘浩 | 二维数组最大值 | Python3 | Compile Error | 0 MS | 0 KB | 190 | 2025-06-08 09:05:10 |
c=0 a=[] for i in range(3): b=input().split() b=[int(x) for x in b] a.append(b) for i in range(len(a)): for j in range(len(a[0])): if a[i][j]>c: c=a[i][j] print(c)
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 9)