반응형
https://www.acmicpc.net/problem/1546
# @Author YoungMinKim
# baekjoon
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)/len(new_score))
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 1712 (0) | 2020.08.21 |
---|---|
baekjoon - python - 1550 (0) | 2020.08.21 |
baekjoon - python - 1417 (0) | 2020.08.21 |
baekjoon - python - 1373 (0) | 2020.08.21 |
baekjoon - python - 1330 (0) | 2020.08.21 |
댓글