예제 입력 1
5
5 50 50 70 80 100
7 100 95 90 80 70 60 50
3 70 90 80
3 70 90 81
9 100 99 98 97 96 95 94 93 91
예제 출력 1
40.000%
57.143%
33.333%
66.667%
55.556%
문제 해답 방법(1)
n = int(input())
for i in range(n):
point = list(map(int, input().split()))
avg = sum(point[1:]) / point[0]
cnt = 0
for j in point[1:]:
if j > avg:
cnt += 1
per = (cnt/point[0]) * 100
print('%.3f' %per + '%')
# 코드길이 252B
# 메모리 30860KB
백준 1110번 더하기 사이클. (0) | 2022.04.01 |
---|---|
백준 2884번 알람 시계. (0) | 2022.04.01 |
백준 2588번 문제 곱셈. (4) | 2022.04.01 |
백준 10689번 문제 사칙연산. (0) | 2022.04.01 |