c = int(input())
for i in range(c):
count = 0
answer = 0
score = list(map(int, input().split()))
avg = sum(score[1:]) / score[0]
for x in score[1:]:
if x > avg:
count += 1
answer = (count / score[0]) * 100
print('%.3f' % answer + "%")
'Coding Test > 백준_Python' 카테고리의 다른 글
[백준/python] 15596번 - 정수 N개의 합 (0) | 2020.08.05 |
---|---|
[백준/python] 8958번 - OX퀴즈 (0) | 2020.08.05 |
[백준/python] 1546번 - 평균 (0) | 2020.07.10 |
[백준/python] 3052번 - 나머지 (0) | 2020.07.09 |
[백준/python] 2562번 - 최댓값 (0) | 2020.07.08 |