[Baekjoon Online Judge] 백준 10039번 평균 점수
(Python)
(글쓴날 : 2020.03.14)
* Baekjoon Online Judge, 백준 10039번 문제 Python 언어 풀이입니다.
* 소스 코드의 저작권은 글쓴이에게 있습니다.
백준 10039번 평균 점수
1) 문제
문제 링크 : https://www.acmicpc.net/problem/10039
2) 풀이 과정
5명의 점수를 입력받아 평균을 구하는 문제입니다.
다만 입력받은 점수가 40점 미만일 경우, 점수를 40점으로 바꾸어 계산하시면 되겠습니다.
3) 코드
* Python 코드
1
2
3
4
5
6
7
8
9
10
11
12
|
import sys
input = sys.stdin.readline
avg = 0
for score in [int(input()) for _ in range(5)]:
if score < 40:
avg += 8
else:
avg += score // 5
print(avg)
|
'Deprecated' 카테고리의 다른 글
[Baekjoon Online Judge] 백준 2446번 별 찍기 - 9(Python) (0) | 2020.03.14 |
---|---|
[Baekjoon Online Judge] 백준 2523번 별 찍기 - 13(Python) (0) | 2020.03.14 |
[CSS] CSS 초기화(Reset) 코드 모음 (0) | 2020.03.12 |
[LeetCode] 리트코드 1266번 Minimum Time Visiting All Points(Python) (0) | 2020.03.11 |
[LeetCode] 리트코드 1295번 Find Numbers with Even Number of Digits(Python) (0) | 2020.03.11 |