2022-08-31 数列の最小値 Python Python3 の組み込み関数である min() 関数を用いることで簡単に数列の最小値を求めることができます。 input() a = list(map(int, input().split())) print(min(a))