[문제]
https://www.acmicpc.net/problem/2587
[풀이]
리스트.sort()만 쓰면 중앙값 쉽게 구할 수 있음
[코드]
if __name__ == '__main__':
number = [int(input()) for _ in range(5)]
number.sort()
print(round(sum(number) / 5))
print(number[2])
'문제풀이 > BOJ' 카테고리의 다른 글
[Python] BOJ/백준 1362번 펫 (0) | 2021.06.14 |
---|---|
[Python] BOJ/백준 2596번 비밀편지 (0) | 2021.06.13 |
[Python] BOJ/백준 2592번 대표값 (0) | 2021.06.12 |
[Python] BOJ/백준 1157번 단어 공부 (0) | 2021.06.12 |
[Python] BOJ/백준 1763번 치킨 쿠폰 (0) | 2021.06.11 |