0
点赞
收藏
分享

微信扫一扫

P5718 【深基4.例2】找最小值(python3实现)-2022.02.01

花海书香 2022-02-01 阅读 60

https://www.luogu.com.cn/problem/P5718

"""
P5718 【深基4.例2】找最小值(python3实现)-2022.02.01
https://www.luogu.com.cn/problem/P5718

"""

n=int(input())

a=list(map(int,input().split()))

print(min(a))


举报

相关推荐

0 条评论