#Lutece0389. A Simple Problem

A Simple Problem

Migrated from Lutece 389 A Simple Problem

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

You know, just as the title imply, this is a simple problem.

In a contest, given the team-id, solved, penalty of all the teams, tell me the champion.If the numbers of solved problem of two team are different, the rank of the one who solves more problems is higher. Otherwise, if the the penalties of two team are different, the rank of the one who has less penalty is higher. Otherwise, the rank of the one whose team-id's lexicographic order is earlier than the other is higher.

Input

The first line of the input is an integer TT which stands for the number of test cases. Then TT test cases follow.

The first line of test case is a number nn, which is the number of team in a contest. Then nn line(s) follow. Each line contain a string, and two integers: strstr, ss(0s150\leq s \leq 15), pp(0p200000\leq p \leq 20000), separated by a blank indicating that there is a team whose id is str, the number of solved problem is s, and the penalty is pp.

constraints:

  • nn is in the range of [1,100][1,100].
  • Each team-id does not contain any blanks.
  • The length of team-id is in the range of [1,20][1, 20].
  • Any two teams will not have the same team-id.

Output

For each test case, output one line with an string indicating the the champion.

Samples

1
7
Refreshing 5 745 
Rock_Restart 4 510 
LeadWill 4 679 
APTX4869 5 374 
WaterCop 5 607 
ISAP 5 638 
TLE 4 902
APTX4869

Resources

10th SCU Programming Contest Final