문제
풀이
total = 0
for i in range(1,6):
grade = int(input())
if grade >= 40 :
total += grade
else:
total += 40
print(int(total/5))
'코딩테스트 > BOJ' 카테고리의 다른 글
[백준/파이썬] 1789번: 수들의 합 (Python) (0) | 2021.02.05 |
---|---|
[백준/파이썬] 2525번: 윤년 (Python) (0) | 2021.02.04 |
[백준/파이썬] 2675번 문자열 반복(Python) (0) | 2021.02.02 |
[백준/파이썬] 2914번: 저작권 (Python) (0) | 2021.02.01 |