본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 16032번 Income Inequality

by 현장 2023. 6. 26.

-Code

while True:
    n = int(input())

    if n == 0:
        break

    nums = list(map(int, input().split()))
    avg = sum(nums) / len(nums)
    res = 0

    for num in nums:
        if num <= avg:
            res += 1

    print(res)