-
1
2
3
4
5
6
7
8
9
10
11
score_list = []
for i in range(5):
score = int(input())
if 0<=score<=100 and score % 5 == 0:
if score>=40:
score_list.append(score)
else:
score = 40
score_mean = sum(score_list)/ len(score_list)
print('%.0f' % score_mean)
점수가 40 이상인 경우와 아닌 경우를 나누어서 리스트에 담은 후 평균을 구하면 된다.