[백준 4344번][Python/파이썬] 평균은 넘겠지

공학도 Lee·2023년 2월 2일
0

백준 문제 풀이

목록 보기
7/63
post-custom-banner

1. 문제


출처: 백준 4344번 평균은 넘겠지

2. 풀이


평균을 구하고, 이를 넘는 학생과 넘지 않는 학생을 구분하는 것은 크게 어렵지 않은 편이다.

결과값을 출력할 때에, 소수점 세 자릿수까지 표현하는 법을 기록해두기 위하여 풀이를 적어둔다.

3. 소스코드


import sys
input = sys.stdin.readline

C = int(input())
for _ in range(C):
    temp = list(map(int,input().split()))
    N = temp[0]
    avg = sum(temp[1:])/N
    student = 0
    for i in temp[1:]:
        if i > avg:
            student += 1
    print("%0.3f%%"%(student/N*100))

4. 그 외


profile
이창민, Changmin Lee
post-custom-banner

0개의 댓글