https://www.acmicpc.net/problem/10039
score = []
for i in range(5):
s = int(input())
score.append(s)
sum_score = 0
for i in range(5):
if score[i] < 40:
sum_score += 40
else:
sum_score += score[i]
print(sum_score//5)
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 10817번 - 세 수 (0) | 2020.06.09 |
---|---|
[Python] 백준 5543번 - 상근날드 (0) | 2020.06.09 |
[Python] 백준 1110번 - 더하기 사이클 (0) | 2020.06.09 |
[Python] 백준 10951번 - A+B - 4 (0) | 2020.06.09 |
[Python] 백준 10952번 - A+B - 5 (0) | 2020.06.09 |
댓글