728x90
✨ 풀이과정
1
2
3
4
5
6
7
8
9
10
11
12
13
|
n = int(input())
for i in range(n):
case = list(map(int,input().split()))
average = sum(case[1:]) / case[0]
student = 0
for j in case[1:]:
if j >= average:
student += 1
ratio = student/case[0]*100
print(f'{ratio:.3f}%')
|
cs |
728x90
'코딩테스트 공부 > 백준 문제' 카테고리의 다른 글
백준 [Python] 4673번: 셀프 넘버 (0) | 2021.10.22 |
---|---|
백준 [Python] 1065번: 한수 (0) | 2021.10.22 |
백준 [Python] 5958번: OX퀴즈 (0) | 2021.10.21 |
백준 [Python] 1546번: 평균 (0) | 2021.10.06 |
백준 [Python] 3052번: 나머지 (0) | 2021.10.06 |