| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 1 초 | 1024 MB | 190 | 117 | 96 | 66.667% |
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.
The first line of input contains a positive integer, N, representing the number of participants.
Each of the next N lines of input contain a single integer representing a participant’s score.
Each score is between 0 and 75 (inclusive) and there will be at least three distinct scores.
Output a non-negative integer, S, and a positive integer, P, separated by a single space, where S is the score required for bronze level and P is how many participants achieved this score.
| Subtask | Score | Description | Bound |
|---|---|---|---|
| 1 | 6 | The scores are distinct and the number of participants is small. | N ≤ 50 |
| 2 | 7 | The scores might not be distinct and the number of participants is small. | N ≤ 50 |
| 3 | 2 | The scores might not be distinct and the number of participants could be large. | N ≤ 250 000 |
4 70 62 58 73
62 1
The score required for bronze level is 62 and one participant achieved this score.
8 75 70 60 70 70 60 75 70
60 2
The score required for bronze level is 60 and two participants achieved this score.