The Croatian version of this contest has the following rules: "Each round of the contest consists of 8 tasks with different point values. Every contestant may solve any of the tasks they choose. However, the contestant's final score will be the sum of points earned on any 5 tasks such that this sum is maximized."
Since the organizers were busy coming up with interesting problems for the contest (and translating them), they've simply forgotten to solve the problem of determining the points scored by each contestant. Now they are kindly asking you to do it for them.
Write a program that, given the number of points earned by a contestant on each task, determines the
total amount of points scored by that contestant, as well as the sorted list of the
Input Specification
Input consists of
Output Specification
The first line of output must contain the total amount of points scored by the contestant.
The second line of output must contain indices of the
Scoring
If only the first line of output (the total amount of points) is correct, the solution will be awarded
Sample Input 1
20
30
50
48
33
66
0
64
Sample Output 1
261
3 4 5 6 8
Sample Input 2
20
0
50
80
77
110
56
48
Sample Output 2
373
3 4 5 6 7
Sample Input 3
20
30
50
80
110
11
0
85
Sample Output 3
355
2 3 4 5 8
Comments