Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
86657 | 汤弘毅 | 二维数组最大值 | Python3 | Accepted | 35 MS | 3756 KB | 233 | 2024-07-27 09:46:00 |
lst = [] for i in range(3): lst.append(list(map(int,input().split()))) def get_max(n): ma = n[0][0] for i in n: for j in i: if j > ma: ma = j return ma print(get_max(lst))