Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
85869 丁俊杰 二维数组最大值 Python3 Accepted 40 MS 3760 KB 128 2024-07-20 21:59:06

Tests(1/1):


Code:

results=[] for x in range(3): a=list(map(int,input().split())) b=max(a) results.append(b) print(max(results))