Kilkat

백준 4344번 python 본문

Programming/python

백준 4344번 python

KimKwangWoon 2021. 3. 17. 17:57
n = int(input())
for i in range(n):
    nums = list(map(int, input().split()))
    avg = sum(nums[1:]) / nums[0]
    cnt = 0
    for scores in nums[1:]:
        if scores > avg:
            cnt += 1
    rate = cnt / nums[0] * 100
    print(str(format(rate, '.3f')+'%'))

'Programming > python' 카테고리의 다른 글

백준 2941번 python  (0) 2021.03.17
백준 2741번 python  (0) 2021.03.17
백준 2577번 python  (0) 2021.03.17
백준 2446번 python  (0) 2021.03.17
백준 2523번 python  (0) 2021.03.17
Comments