n = int(input())
score = list(map(int,input().split()))
max_score = max(score)
print(sum(list(map(lambda x:(x/max_score)*100, score)))/n)
반응형

'알고리즘' 카테고리의 다른 글

[백준] 2231 분배합  (0) 2023.10.17
[백준] 1934 최소공배수  (0) 2023.10.17
[백준] 1929 소수구하기  (0) 2023.10.17
[백준]1436 영화감독 숌  (0) 2023.10.17
[백준]1157 단어공부  (0) 2023.10.17

+ Recent posts