Problem E
Golf
Languages
en
is

The members of the Competitive Programming Association of Iceland decided to partake in a Code Golf contest. They thought this would be a contest of who can code the shortest solution to competitive programming problems, but unfortunately this was not the case! This was a golfing contest for programmers! Since they had already registered many of the members decided to go anyway. They didn’t bring paper and pencils to record their scores though, as they had been expecting a programming contest. But for the same reason they did bring their laptops with them. The solution is clear, a program that keeps track of golf scores has to be coded!
All participants start at par, and on each hole each
participant is some number of shots over or under par. Par is a
predetermined number of shots that designers estimate it will
take a proficient golfer to complete the hole. The scores are
always compared to par and are added together. This means
Input
The first line of input contains two positive integers
All names only contain English upper and lower case letters.
Each name is at most
Output
For each line in the input that begins with ? print the place of that contestant along with how far from par they are. If there is more than one contestant with the same score, they are all considered to be in the highest place among them. For example if second to fifth place all have the same score, they are all considered to be in second place.
Scoring
Group |
Points |
Constraints |
1 |
20 |
|
2 |
20 |
|
3 |
20 |
|
4 |
30 |
|
5 |
10 |
|
Sample Input 1 | Sample Output 1 |
---|---|
7 5 Arnar Atli Dagur Eva Hannes Konrad Samuel ! 3 Atli 3 Eva -1 Konrad -2 ? Atli ? Eva ? Konrad ? Samuel |
7 3 2 -1 1 -2 3 0 |