https://www.acmicpc.net/problem/4344
풀이
a = int(input())
for i in range(a):
ls = list(map(int,input().split()))
avg = sum(ls[1:])/ls[0]
cnt = 0
for j in ls[1:]:
if j > avg:
cnt += 1
per = (cnt/ls[0])*100
print('%.3f' %per + '%')
'Python > Baekjoon' 카테고리의 다른 글
백준 4673번 : 셀프 넘버 (0) | 2022.10.06 |
---|---|
백준 15596번 : 정수 N개의 합 (0) | 2022.10.06 |
백준 8958번 : OX퀴즈 (0) | 2022.10.06 |
백준 1546번 : 평균 (0) | 2022.10.06 |
백준 3052번 : 나머지 (0) | 2022.10.06 |