본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#38 백준 파이썬 [10039] 평균 점수

#38 백준[10039] 평균 점수



https://www.acmicpc.net/problem/10039




#Solution


score_list = []
for i in range(5):
score = int(input())
if score >= 40:
score_list.append(score)
else:
score_list.append(40)
print(round(sum(score_list)/5))