Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93308 潘允晨 13求n个数的最小值 Python3 Accepted 37 MS 3764 KB 68 2024-10-13 10:02:14

Tests(10/10):


Code:

n=int(input()) a=list(map(int,input().split())) s=min(a) print(s)