보안을 그리다, 훈이

[Baekjoon/Python3] 10039번 평균 점수 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 10039번 평균 점수

HooNeee 2020. 12. 6. 03:09

[Baekjoon/Python3] 10039번 평균 점수

 

www.acmicpc.net/problem/10039

 

10039번: 평균 점수

입력은 총 5줄로 이루어져 있고, 원섭이의 점수, 세희의 점수, 상근이의 점수, 숭이의 점수, 강수의 점수가 순서대로 주어진다. 점수는 모두 0점 이상, 100점 이하인 5의 배수이다. 따라서, 평균 점

www.acmicpc.net

 

inp = [int(input()) for i in range(5)]
for i in inp:
    if i < 40:
        inp[inp.index(i)] = 40
print(sum(inp) // 5)
Comments