본문 바로가기

Python/code problem

[sw expert acadmey] 10505. 소득 불균형

https://swexpertacademy.com/main/main.do

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

이건 나름 쉬운 편이다.

 

T= int(input())
for t in range(1,T+1):
  N= int(input())
  arr= list(map(int,input().split()))
  ave = sum(arr)/N
  num=0
  for i in arr:
    if i<=ave:
      num+=1
  print("#{} {}".format(t,num))