본문 바로가기

인문학도 개발일지/1일1알고리즘

[알고리즘] 백준 1546 : 평균 파이썬 풀이

 

 

 

풀이
N = int(input())
score = list(map(int,input().split()))
M = max(score)
new_score = []
for i in score:
    new_score.append(i/M*100)
    
print(sum(new_score)/N)