問題
B – 心配性な富豪、ファミリーレストランに行く。
重複を取り除きソートする
set()
で重複を取り除き、list()
でリスト化し、sorted()
でソートする。
答え
N = int(input()) A = [int(input()) for _ in range(N)] A_sorted = sorted(list(set(A))) print(A_sorted[-2])
Freedom is a responsible choice.
set()
で重複を取り除き、list()
でリスト化し、sorted()
でソートする。
N = int(input()) A = [int(input()) for _ in range(N)] A_sorted = sorted(list(set(A))) print(A_sorted[-2])