백준 1546 (python) sum

Grace Goh·2022년 9월 10일
0

백준 (python)

목록 보기
18/27
post-custom-banner
N = int(input())
scores = list(map(int, input().split()))
M = max(scores)

new = []
for score in scores:
    new.append(score / M * 100)

print(sum(new)/N)
  • sum(리스트명)
profile
Español, Inglés, Coreano y Python

0개의 댓글