알고리즘/백준

백준 4344: 평균은 넘겠지 (Python)

sssbin 2021. 8. 24. 16:11

https://www.acmicpc.net/problem/4344

 

4344번: 평균은 넘겠지

대학생 새내기들의 90%는 자신이 반에서 평균은 넘는다고 생각한다. 당신은 그들에게 슬픈 진실을 알려줘야 한다.

www.acmicpc.net

 

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