https://www.acmicpc.net/problem/4344
n=int(input())
for i in range(n):
s=list(map(int,input().split()))
avg=sum(s[1:])/s[0]
cnt=0
for i in s[1:]:
if i>avg:
cnt+=1
print(f"{cnt/s[0]*100:.3f}%")
'알고리즘 > 백준' 카테고리의 다른 글
백준 1065: 한수 (Python) (0) | 2021.08.24 |
---|---|
백준 4673: 셀프 넘버 (Python) (0) | 2021.08.24 |
백준 3052: 나머지 (Python) (0) | 2021.08.24 |
백준 2577: 숫자의 개수 (Python) (0) | 2021.08.24 |
백준 2562: 최댓값 (Python) (0) | 2021.08.24 |