【AtCoder】【Python】ABC275 A問題 AtCoder 2025-07-21 問題 ABC275 A キーワード リストの基本操作 コード N = int(input()) H = list(map(int, input().split())) # 最大値のインデックスを求める print(H.index(max(H)) + 1)
コメント