티스토리 뷰
https://www.acmicpc.net/problem/4344
import sys
C = int(sys.stdin.readline())
for i in range(C):
s = list(map(int, sys.stdin.readline().split()))
N = s[0]
avg = sum(s[1:])/N
cnt = 0
for j in range(1, N+1):
if avg < s[j]:
cnt += 1
print('%0.3f' %round(cnt/N*100, 3) + '%')
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 1065 : 한수 - Python (0) | 2020.03.26 |
---|---|
[백준] 4673 : 셀프 넘버 - Python (0) | 2020.03.26 |
[백준] 8958 : OX퀴즈 - Python (0) | 2020.03.25 |
[백준] 2606 : 바이러스 - Python (0) | 2020.03.20 |
[백준] 1260 : DFS와 BFS - Python (0) | 2020.03.20 |