Problem C
Dishonest Lottery
You suspect your local lottery of cheating! Some numbers are coming up too often!
Each week, the lottery randomly selects five numbers in the
range from one to fifty. So, each number should appear about
Determine if a set of lottery drawings is suspicious by
listing all numbers that appear too often. To allow for random
error, you’ll need to flag any number that appears more than
Input
The first line of input contains a single integer
Each of the next
Output
On a single line, output all numbers that appear strictly
more than
Sample Input 1 | Sample Output 1 |
---|---|
1 32 30 16 45 27 34 45 35 31 42 1 12 26 50 13 34 50 36 21 39 47 7 41 18 45 28 48 2 8 4 16 40 17 2 19 50 4 30 15 6 31 13 33 46 18 49 23 24 17 48 |
45 50 |