Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93302 | 潘允晨 | 13求n个数的最小值 | Python3 | Wrong Answer | 35 MS | 3736 KB | 52 | 2024-10-13 10:00:05 |
a=list(map(int,input().split())) s=max(a) print(s)
------Input------
8 74 34 87 21 47 95 59 99
------Answer-----
21
------Your output-----
8