Algorithm/Baekjoon

백준 단계별로 풀기 6단계 1차원 배열 사용하기 - 평균 점수 (10039 문제) Python 2 답안

Bonita SY 2019. 1. 17. 23:13
728x90
반응형

total = 0

for i in list(range(5)):

        score = int(input())

        if score <= 40:

                total += 40

        else:

                total += score

print total / 5

728x90
반응형