====== 평균은 넘겠지 ====== ===== 풀이 ===== * 그냥 시키는 대로 계산하면 된다 * 총점 -> 평균 -> 평균을 넘는 사람 수 -> 평균을 넘는 사람의 비율 순서로 구하면 끝. ===== 코드 ===== """Solution code for "BOJ 4344. 평균은 넘겠지". - Problem link: https://www.acmicpc.net/problem/4344 - Solution link: http://www.teferi.net/ps/problems/boj/4344 """ import sys def main(): C = int(sys.stdin.readline()) for _ in range(C): N, *scores = [int(x) for x in sys.stdin.readline().split()] average = sum(scores) / N answer = sum(1 for x in scores if x > average) / N * 100 print(f'{answer:.3f}%') if __name__ == '__main__': main() {{tag>BOJ ps:problems:boj:브론즈_1}}