Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94209 | 胡皓宇 | 找最大的数 | Python3 | Wrong Answer | 39 MS | 3752 KB | 118 | 2024-10-20 09:09:10 |
a = list(map(int,input().split())) for i in range(10): if a[i] == max(a) : print(max(a)) break
------Input------
540 810 559 973 744 226 261 427 615 615
------Answer-----
4
------Your output-----
973