honey_pot
[python] 백준 10039번 본문
list1 = [] # 점수 담을 리스트 생성
for _ in range(5): # 5개의 점수를 줄마다 받아야하므로 반복문 사용
list1.append(int(input())) # list에 추가
for i in range(len(list1)): # list 길이만큼 돌면서
if list1[i] < 40: # 점수가 40점 미만이면
list1[i] = 40 # 값을 40점으로 바꿈
print((sum(list1))//5) # 총합 구하고 5로 나눔
'문제 풀이' 카테고리의 다른 글
[python] 백준 4101번 (0) | 2021.06.06 |
---|---|
[python] 백준 2480번 (0) | 2021.06.06 |
[python] 백준 2754번 (0) | 2021.06.03 |
[python] 백준 10156번 (0) | 2021.06.03 |
[python] 백준 11557번 (0) | 2021.06.03 |
Comments