문제링크: https://www.acmicpc.net/problem/1546
이 문제에서 필요한 것은 원소들의 합을 구하는 sum 함수를 아는 것이 중요하다.
n = int(input())
score = list(map(int, input().split()))
h_score = int(max(score))
for i in range(n):
score[i] = score[i]/h_score*100
print(sum(score)/n)
간단화
n = int(input())
a = list(map(int,input().split()))
print((sum(a)/n)*(100/max(a)))
내 solution의 for과정을 print한 줄로 줄인것.
내가 for문을 통해 list의 원소를 바꾼 반면, 처음부터 sum 함수를 사용해 print함수 안에서 작성한다.