728x90
백준 4344번의 문제풀이 입니다.
test_case_count = input()
for i in range(int(test_case_count)):
test_case = input()
# spliting string to list
test_case = test_case.split()
# converting each string to int
test_case = [int(i) for i in test_case]
student_count = test_case[0]
scores = test_case[1:]
sum_of_scores = sum(scores)
mean = sum_of_scores / student_count
counts = 0
for j in scores:
if j > mean:
counts += 1
proportion = (counts / student_count) * 100
proportion = round(proportion, 3)
print('%.3f' % proportion + '%')
728x90
'Development > Algorithm' 카테고리의 다른 글
[Algorithm] 백준 4673번 문제 풀이 (0) | 2021.03.20 |
---|---|
[Algorithm] 백준 15596번 문제 풀이 (0) | 2021.03.18 |
[Algorithm] 백준 8958번 문제 풀이 (0) | 2021.03.17 |
[Algorithm] 백준 1546번 문제풀이 (0) | 2021.03.15 |
[Algorithm] 백준 3052번 문제풀이 (0) | 2021.03.14 |