[SW10505] 소득 불균형
✏️ 𝗔𝗹𝗴𝗼𝗿𝗶𝘁𝗵𝗺/SW Expert Academy

[SW10505] 소득 불균형

 

 SW Expert Academy- 소득 불균형 

문제 링크

https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AXNP4CvauaMDFAXS&categoryId=AXNP4CvauaMDFAXS&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=3&pageSize=10&pageIndex=3 

 

SW Expert Academy

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

swexpertacademy.com

 

문제 입력

3
7
15 15 15 15 15 15 15
10
1 1 1 1 1 1 1 1 1 100
7
2 7 1 8 2 8 4
#1 7
#2 9
#3 4

 

문제 풀이

import sys
import statistics as st


sys.stdin = open('input.txt', 'rt')
T = int(input())

for t in range(T):
    n = int(input())
    a = list(map(int, input().split()))
    mean = st.mean(a)
    ans = 0
    for x in a:
        if x <= mean:
            ans += 1
    print(f"#{t + 1}", ans)

statistics 모듈을 이용하여 풀었습니다.

 

 

 

 

 

 

 

 

 

# SW Expert 소득불균형 python 파이썬


 

728x90