n = int(input())
score = list(map(int, input().split()))
score_change = []
for x in range(n):
score_change.append(score[x]/max(score)*100)
avg = sum(score_change)/n
print(avg)
'Coding Test > 백준_Python' 카테고리의 다른 글
[백준/python] 4344번 - 평균은 넘겠지 (0) | 2020.08.05 |
---|---|
[백준/python] 8958번 - OX퀴즈 (0) | 2020.08.05 |
[백준/python] 3052번 - 나머지 (0) | 2020.07.09 |
[백준/python] 2562번 - 최댓값 (0) | 2020.07.08 |
[백준/python] 2577번 - 숫자의 개수 (0) | 2020.07.08 |