본문 바로가기
공부/데이터사이언스

[백준] 4단계 - 4344번 (파이썬) check!

by PYo 2022. 6. 23.
반응형

4344번

https://www.acmicpc.net/problem/4344

 

 

 

C = int(input())
while C>0:
    li = list(map(int, input().split()))
    avg = sum(li[1:])/li[0]
    ans = 0
    for i in li[1:]:
        if i > avg:
            ans += 1
    print( format((ans/li[0])*100, ".3f") + "%" )      #소수점 셋째자리까지 출력
    C -= 1

 

 


 

 

 

 

cf) 소수점 자릿수 지정 관련 참고

https://jsikim1.tistory.com/226

 

 

 

반응형

댓글