문제를 똑바로 읽자! 점수 오름차순인지, 아니면 순서 오름차순인지, 숫자 오름차순인지에 따라서 헤맬 수 있는 여지가 많아진다! 나머지는 간단했던 문제.
# 2822
import operator
score = {}
total = 0
answer = []
for i in range(8):
n = int(input())
score[n]=i+1
final = sorted(score.items(), key=operator.itemgetter(0))[3:]
for a, b in final:
total += a
answer.append(str(b))
print(total)
print(' '.join(sorted(answer)))