1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
from collections import Counter
import sys
n = int(input())
math = []
for i in range(n):
math.append(int(sys.stdin.readline()))
math.sort()
most = Counter(math)
result = most.most_common(2)
print(round(sum(math)/n))
print(math[int(len(math)/2)])
if len(result)==1:
print(result[0][0])
elif result[0][1]==result[1][1]:
print(result[1][0])
else:
print(result[0][0])
print(math[-1]-math[0])
|
cs |
'백준' 카테고리의 다른 글
백준 2606번: 바이러스 (0) | 2021.05.20 |
---|---|
백준 10773번: 제로 (0) | 2021.05.18 |
백준 2667번: 단지번호붙이기 (0) | 2021.05.16 |
백준 9012번: 괄호 (0) | 2021.05.07 |
백준 1978번: 소수 찾기 (0) | 2021.05.07 |