sum = 0
N = int(input())
a = list(map(int, input().split()))
top = max(a)
for i in range(0, N):
sum += a[i] / top * 100
print(sum / N)
'Programming > python' 카테고리의 다른 글
백준 2446번 python (0) | 2021.03.17 |
---|---|
백준 2523번 python (0) | 2021.03.17 |
백준 2444번 python (0) | 2021.03.17 |
백준 2440번 python (0) | 2021.03.17 |
백준 2438번 python (0) | 2021.03.17 |