| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 109390 | 展博 | 二维数组最大值 | Python3 | Compile Error | 0 MS | 0 KB | 205 | 2025-02-08 15:28:07 |
a=[] for x in range(3): b=input().split() b=[ int(x) for x in b] a.append(b) m=0 for x in range(3): for y in range(4): if a[x][y]>ring: m=a[x][y] print(m)
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 4)