n_test = int(input())
for i in range(n_test):
l = list(map(int, input().split()))
sum = 0
cnt = 0
for j in range(1, len(l)):
sum += l[j]
for j in range(1, len(l)):
if l[j]>sum/l[0]:
cnt += 1
print(f"{(cnt / l[0] * 100):.3f}%")
f-string 포맷 사용
소수점 3개 제한 : print(f"{something:.3f}")
'공부 > 알고리즘' 카테고리의 다른 글
[백준]1065_python파이썬 풀이 (0) | 2021.12.29 |
---|---|
[백준]4673_python파이썬 풀이 (0) | 2021.12.29 |
[백준]8958_python파이썬 풀이 (0) | 2021.12.28 |
[백준]1546_python파이썬 풀이 (0) | 2021.12.28 |
[백준]3052_python파이썬 풀이 (0) | 2021.08.26 |
댓글