Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94209 胡皓宇 找最大的数 Python3 Wrong Answer 39 MS 3752 KB 118 2024-10-20 09:09:10

Tests(0/10):


Code:

a = list(map(int,input().split())) for i in range(10): if a[i] == max(a) : print(max(a)) break


Run Info:

------Input------
540 810 559 973 744 226 261 427 615 615
------Answer-----
4
------Your output-----
973