알고리즘 문제 풀기/BOJ
BOJ백준 1546 - 평균
bug_maker
2019. 4. 5. 18:01
<https://www.acmicpc.net/problem/1546>
BOJ/백준 1546 - 평균
n = int(input())
score = list(map(int, input().split()))
highest_score = max(score)
result = 0
for scr in score:
result += scr / highest_score * 100
print(result / n)