본문 바로가기
IT/알고리즘

[백준] 4344 평균은 넘겠지

by 랑_랑 2022. 1. 11.
300x250
import sys
sys.stdin = open('input.txt')

T = int(input())
for i in range(T):
    std_score = list(map(int, input().split()))
    std_num = std_score.pop(0)
    count = 0
    a = 0
    for i in range(std_num):
        if sum(std_score)/std_num < std_score[i]:
            count += 1
    ratio = count/std_num*100
    print('{:.3f}%'.format(ratio))

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

 

4344번: 평균은 넘겠지

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

www.acmicpc.net


 student 숫자를 이용하여 평균을 구해주고 그 수보다 큰 값의 성적을 가진 학생이 있다면 카운트를 하나씩 더해준다.
 
 
 
728x90

'IT > 알고리즘' 카테고리의 다른 글

[백준] 2869 달팽이는 올라가고 싶다.  (0) 2022.01.13
[백준] 1712 손익분기점  (0) 2022.01.13
[백준] 1152 단어의 개수  (0) 2022.01.13
[백준] 4673 셀프 넘버  (0) 2022.01.11
[백준] 4153 직각삼각형 파이썬  (0) 2022.01.10

댓글