본문 바로가기
공부/알고리즘

[백준]1546_python파이썬 풀이

by happyeuni 2021. 12. 28.

 

import statistics
n = int(input())
list_org = list(map(int, input().split()))
list_new = []
m = max(list_org)
for i in list_org:
    list_new.append(i/m*100)
print(statistics.mean((list_new)))#numpy.mean(list_new))

리스트 평균 구하는 것 

import statistics

statistics.mean

'공부 > 알고리즘' 카테고리의 다른 글

[백준]4344_python파이썬 풀이  (0) 2021.12.29
[백준]8958_python파이썬 풀이  (0) 2021.12.28
[백준]3052_python파이썬 풀이  (0) 2021.08.26
[백준]2577_python파이썬 풀이  (0) 2021.08.26
[백준]2562_python파이썬 풀이  (0) 2021.08.17

댓글