728x90
T=int(input())
for i in range(T):
arry=list(map(int,input().split()))
N=int(arry[0])
avg=(sum(arry)-N)/N
count=0
for j in range(1,N+1):
if int(arry[j])>avg:
count+=1
result=round(float((count/N)*100),3)
print('%.3f'%result+"%")
728x90
'Baekjoon Case' 카테고리의 다른 글
[파이썬 / 백준 10250번] ACM 호텔 (0) | 2021.11.15 |
---|---|
[파이썬 / 백준 1712번] 손익분기점 (0) | 2021.11.14 |
[파이썬 / 백준 2839번] 설탕 배달 (0) | 2021.11.12 |
[파이썬 / 백준 2884번] 알람 시계 (0) | 2021.11.11 |
[파이썬 / 백준 1212번] 8진수 2진수 (0) | 2021.11.02 |