728x90 비전공자 알고리즘1 [백준] 4344 평균은 넘겠지 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%는 자신이 반에서 평균은 넘는다고 생각한다. 당신은 그들에게 .. 2022. 1. 11. 이전 1 다음 728x90