Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
128413 | 6倪葭轩 | 二维数组最大值 | Python3 | Accepted | 54 MS | 3780 KB | 220 | 2025-08-16 14:22:10 |
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)