Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
86850 | 蔡胤泽 | 二维数组最大值 | Python3 | Accepted | 32 MS | 3768 KB | 201 | 2024-07-28 16:13:30 |
list1 = [] list3 = [] for i in range(3): list2 = list(map(int, input().split())) list1.append(list2) for i in list1: for j in i: list3.append(j) n = max(list3) print(n)