반응형
https://www.acmicpc.net/problem/4344
c = int(input())
for _ in range(c):
count = 0
score_list = list(map(int, input().split()))
mean = sum(score_list[1:]) / score_list[0]
for score in score_list[1:]:
if score > mean:
count += 1
rate = count / score_list[0] * 100
print(f"{rate:.3f}%")
출력값에 주의해야 한다.
↓↓↓format() 메서드↓↓↓
[Language/Python] - [python] format() 메서드
반응형
'algorithm > Baekjoon' 카테고리의 다른 글
[python] 백준 4673_셀프 넘버 (0) | 2021.06.25 |
---|---|
[python] 백준 15596_정수 N개의 합 (0) | 2021.06.25 |
[python] 백준 8958_OX퀴즈 (0) | 2021.06.24 |
[python] 백준 1546_평균 (0) | 2021.06.23 |
[python] 백준 3052_나머지 (0) | 2021.06.23 |