2024 J3 - Bronze Count
Normalimplementationsimple math
1 Solution Available
Solution 1
PYTHON1# By Daniel Zhang, Pinetree Secondary
2
3n = int(input())
4scores = []
5for i in range(n):
6 scores.append(int(input()))
7
8gold = max(scores)
9for i in range(n):
10 if scores[i] == gold:
11 scores[i] = -1
12
13silver = max(scores)
14for i in range(n):
15 if scores[i] == silver:
16 scores[i] = -1
17
18bronze = max(scores)
19c = 0
20
21for i in range(n):
22 if scores[i] == bronze:
23 c += 1
24
25
26print(f"{bronze} {c}")
Test Cases
Select a test case to view input and output