본문 바로가기
백준 문제풀이

baekjoon - python - 10039

by winston1214 2020. 8. 29.
반응형

https://www.acmicpc.net/problem/10039

 

10039번: 평균 점수

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

www.acmicpc.net

# @Author YoungMinKim
# baekjoon
a=int(input())
b=int(input())
c=int(input())
d=int(input())
e=int(input())
hap = 0
for i in (a,b,c,d,e):
    if i<40:
        i=40
    hap+=i
print(int(hap/5))

반응형

'백준 문제풀이' 카테고리의 다른 글

baekjoon - python - 2581  (0) 2020.08.29
baekjoon - python - 1978  (0) 2020.08.29
baekjoon - python - 1929  (0) 2020.08.28
baekjoon - python - 1065  (0) 2020.08.28
baekjoon - python - 4673  (0) 2020.08.28

댓글