

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
AtCoder 高校には 人の生徒が在籍し、生徒 ,生徒 , ,生徒 と番号付けられています。 ある日、全員が数学と英語のテストを受け、 生徒 は数学で 点、英語で 点を取りました。AtCoder 高校では、次のようにして成績の順位がつけられます。
- 数学と英語の合計点が高い生徒が上位
- 合計点が等しいとき、数学の点が高い生徒が上位
- 合計点および数学の点が等しいとき、番号が小さい生徒が上位
成績が上位の方から順に、 人の生徒番号を出力してください。
制約
- 入力は全て整数である。
入力
入力は以下の形式で標準入力から与えられる。
出力
以下の形式で、 行に出力せよ。
ただし、 は、 人の生徒を成績が上位の方から順に並べたとき、 番目にくる生徒の番号である。
入力例 1Copy
5 5 10 10 12 5 10 10 5 0 10
出力例 1Copy
2 3 1 5 4
順位は次のように判定されます。
- 数学と英語の合計点は順に、 , , , , であるので、生徒 が成績順で 番目に、生徒 , , がそれぞれ , , 番目のいずれかに、生徒 が 番目に来ます。
- 生徒 , , は数学と英語の合計点が同じであり、数学の点数は順に , , であるので、生徒 が成績順で 番目に、生徒 , がそれぞれ , 番目のいずれかに来ます。
- 生徒 , は数学と英語の合計点および数学の点が同じであるので、番号の小さい生徒 が成績順で 番目に、大きい生徒 が 番目に来ます。
よって、成績が上位の方から順に、生徒 , , , , となります。
入力例 2Copy
2 0 1000000000 0 1000000000
出力例 2Copy
2 1
Score : points
Problem Statement
There are students in AtCoder High School, given student IDs and called Student , Student , , Student . One day, all of them took tests in math and English, and Student scored in math and in English. In this school, the students are ranked as follows.
- A student with a higher total score in math and English ranks higher.
- When students have the same total score, a student with a higher score in math ranks higher.
- When students have both the same total score and the same score in math, a student with a smaller student ID ranks higher.
Print the student IDs of the students in descending order of rank.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print a line in the following format:
Here, should be the student ID of the student who ranks -th from the top.
Sample Input 1Copy
5 5 10 10 12 5 10 10 5 0 10
Sample Output 1Copy
2 3 1 5 4
The students are ranked as follows.
- The respective students' total scores in math and English are , , , , , so Student comes -st, Students , , come -nd, -rd, -th in some order, and Student comes -th.
- Students , , , with the same total score in math and English, scored , , in math, respectively, so Student comes -nd, and Students , come -rd, -th in some order.
- Since Students and have both the same total score and the same score in math, Student , with the smaller student ID, comes -rd, and Student , with the larger student ID, comes -th.
Therefore, the students are ranked in the order , , , , from top to bottom.
Sample Input 2Copy
2 0 1000000000 0 1000000000
Sample Output 2Copy
2 1