[문제]
[코드]
import sys
from collections import Counter
input = sys.stdin.readline
def make_count(num):
num = sorted(num)
print(int(round(sum(num)/len(num),0)))
print(num[len(num)//2])
f = Counter(num)
b = f.most_common()
if len(num) > 1 :
if b[0][1] == b[1][1]:
print(b[1][0])
else:
print(b[0][0])
else:
print(num[0])
print(max(num) - min(num))
num =[]
for i in range(int(input())):
n = int(input())
num.append(n)
make_count(num)
[해설]
간단한 구현 문제이다. 이정도 레벨의 백준문제를 풀고 있는 사람이라면 가볍게 풀 수 있는 문제일 것이다.
'연습의 흔적들🚩 > 백준⚾' 카테고리의 다른 글
[백준] 11724번 연결 요소의 개수 파이썬(Python) 풀이 (0) | 2022.10.31 |
---|---|
[백준] 1012번 유기농 배추 파이썬(Python) 풀이 (0) | 2022.10.26 |
[백준] 1260번 DFS와 BFS 파이썬(Python) 풀이 (0) | 2022.10.24 |
[백준] 1021번 회전하는 큐 파이썬(Python) 풀이 (0) | 2022.10.22 |
[백준] 14501번 퇴사 파이썬(Python) 풀이🚩 (0) | 2022.10.19 |