Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
128414 | 江屹山 | 二维数组最大值 | Python3 | Accepted | 40 MS | 3780 KB | 264 | 2025-08-16 14:22:25 |
row =3 col=4 #数据录入 a=[] for i in range ( row ): b = input().split() a.append(b) #遍历 ma=int(a[0][0]) for i in range(row): for j in range (col): if int(a[i][j])>ma: ma=int(a[i][j]) #数据输出 print(ma)