728x90
반응형
정렬 몇 번만 해주면 쉽게 풀 수 있는 문제이다.
li = [int(input()) for _ in range(8)]
sorted_li = sorted(li, reverse=True)
t = sum(sorted_li[:5])
idx_li = sorted([li.index(sorted_li[i])+1 for i in range(5)])
print(t)
print(*idx_li)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 1173번 운동(python) (0) | 2021.02.17 |
---|---|
백준 알고리즘 1159번 농구 경기(python) (0) | 2021.02.17 |
백준 알고리즘 6627번 The Easiest Problem is This One(python) (0) | 2021.02.15 |
백준 알고리즘 7595번 Triangles(python) (0) | 2021.02.15 |
백준 알고리즘 6322번 직각 삼각형의 두 변(python) (0) | 2021.02.15 |