백준 1546 평균 / list의 sum함수

Dreamer_01·2021년 1월 8일
0

알고리즘 풀이

목록 보기
18/34

문제링크: 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함수 안에서 작성한다.

0개의 댓글

관련 채용 정보