Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
121697 赵乘浩 二维数组最大值 Python3 Compile Error 0 MS 0 KB 191 2025-06-08 09:05:47

Tests(0/0):


Code:

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)


Run Info:

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