CEN112 Homeworks 2013-2015 |
Start: Dec.15.2013 at 12:00:00 PM
Finish: Dec.15.2013 at 05:00:00 PM
The contest is finished!
• Contest scoreboard
|
Feedback | If you notice incorrect translations in Contester, please let author know.
|
|
Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Question by Ibrahim Mesecan.
Swimming Contest
In swimming contests, the swimmers jump/fall into water
from platforms of different heights while performing acrobatics.
They are evaluated by many judges. Every judge gives a
point between 0 and 10. When calculating the average of
each jump, two of the evaluations (max and min) are discarded.
And, the average is calculated out of other points
given by judges.
Question:
Write a program that is going to read swimming information
for n swimmers. Then, your program
should calculate and show the winner.
Input specification
You will be given three integers in the first line:
- n: the number of people
- m: the number of juries
- k: the number of platforms
where 1 ≤ n ≤ 100, 1 ≤ m ≤ 20,
and 1 ≤ k ≤ 20.
Then, in the following n lines you will have the
information for swimmers. In every line, you will be
first given the name of the swimmer and that is followed
by m points given by the judges. Information for n swimmers
will be repeated k times for platforms. Swimmer information
appear in the same order for every platform
Output specification
Show the name of winner.
Sample Input I
3 6 2
Shaun 8.4 5.6 7.2 9.2 8.1 5.7
George 5.4 8.7 6 9.9 7.6 8.3
Kim 7.5 5.2 5.9 9.1 8.5 9
Shaun 7.8 8.6 6.6 8.7 7.8 8.6
George 9.9 9.6 8.3 9.2 6.7 7.5
Kim 8 8.9 9.1 8.9 9.1 7.1
|
Sample Output I
Kim
|
Для отправки решений необходимо выполнить вход.
|