Canadian Computing Competition: 2024 Stage 1, Junior #3
After completing a competition, you are struck with curiosity. How many participants were awarded bronze level?
Gold level is awarded to all participants who achieve the highest score. Silver level is awarded to all participants who achieve the second highest score. Bronze level is awarded to all participants who achieve the third highest score.
Given a list of all the scores, your job is to determine the score required for bronze level and how many participants achieved this score.
Input Specification
The first line of input contains a positive integer,
Each of the next
Each score is between
The following table shows how the available 15 marks are distributed:
Marks | Description | Bound |
---|---|---|
6 | The scores are distinct and the number of participants is small. | |
7 | The scores might not be distinct and the number of participants is small. | |
2 | The scores might not be distinct and the number of participants could be large. |
Output Specification
Output a non-negative integer,
Sample Input 1
4
70
62
58
73
Output for Sample Input 1
62 1
Explanation of Output for Sample Input 1
The score required for bronze level is
Sample Input 2
8
75
70
60
70
70
60
75
70
Output for Sample Input 2
60 2
The score required for bronze level is
Comments
sigma
preparing for the ccc last moment is unfortunately not sigma tho...
Can someone tell me why my code doesn't work? I tested on Jupyter and it worked fine.
The code is correct. Just not efficient enough.