Problem A
Black Friday

Black Friday is the Friday following Thanksgiving Day in the United States (the fourth Thursday of November). Since the early 2000s, it has been regarded as the beginning of the Christmas shopping season in the US, and most major retailers open very early and offer promotional sales. (Source: Wikipedia)
You work in the IT support division of an electronics store.
This year, in an attempt to prevent overcrowding, the
management has decided to limit the number of people entering
the store. They divide the people at the entrance into groups
of size
For example, if there are three players and the outcomes are 6, 6 and 5, then the third player wins, because the first and second player lose even though their outcomes are higher, since they both have the same outcome. If instead the third player also rolls 6, then nobody wins.
They asked you to write a program for selecting the winner.
Input
The first line of the input contains one integer
Output
Output the index of the participant that has the highest unique outcome, or “none” (without the quotes) if nobody has a unique outcome.
Sample Input 1 | Sample Output 1 |
---|---|
8 1 1 1 5 3 4 6 6 |
4 |
Sample Input 2 | Sample Output 2 |
---|---|
3 4 4 4 |
none |