백준 4344 (python) ☑

Grace Goh·2022년 9월 11일
0

백준 (python)

목록 보기
20/27
post-custom-banner
C = int(input())

for _ in range(C):
    nums = list(map(int, input().split()))
    avg = sum(nums[1:])/nums[0]
    
    cnt = 0
    for score in nums[1:]:
        if score > avg:
            cnt += 1
    rate = cnt/nums[0] * 100
    print(f'{rate:.3f}%')

  • f-string f"{소수:.3f}%" 소수점 셋째 자리까지 출력
profile
Español, Inglés, Coreano y Python

0개의 댓글