J3. Bronze Count
의견: 0
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.
| 서브태스크 | 점수 | 설명 |
|---|---|---|
1 | 40점 | The scores are distinct and the number of participants is small. — \(N \leq 50\) |
2 | 47점 | The scores might not be distinct and the number of participants is small. — \(N \leq 50\) |
3 | 13점 | The scores might not be distinct and the number of participants could be large. — \(N \leq 250\,000\) |
4
70
62
58
7362 1The score required for bronze level is \(62\) and one participant achieved this
score.
8
75
70
60
70
70
60
75
7060 2The score required for bronze level is \(60\) and two participants achieved this
score.
평가 및 의견
J3. Bronze Count
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
J3. Bronze Count