洛谷P5718 【深基4.例2】找最小值(数组)

题目描述

求n个数最小值

代码

n = input()
a = input().split()
lst = []
for i in a :
    lst.append(int(i

你可能感兴趣的:(python)