248日目-BOJ no.288
5626 ワード
https://www.acmicpc.net/problem/2108
My Solution
import sys
from collections import defaultdict
n = int(sys.stdin.readline().rstrip())
arr = []
for _ in range(n):
arr.append(int(sys.stdin.readline().rstrip()))
# 일단 정렬
arr.sort()
# 산술평균
arith = round(sum(arr) / n)
# 중앙값
mid = arr[len(arr)//2]
# 범위
ran = arr[-1] - arr[0]
# 최빈값
dic = defaultdict(int)
for i in arr:
dic[i] += 1
temp = [k for k, v in dic.items() if max(dic.values()) == v]
temp.sort()
if len(temp) > 1:
most = temp[1]
else:
most = temp[0]
print(arith)
print(mid)
print(most)
print(ran)
Reference
この問題について(248日目-BOJ no.288), 我々は、より多くの情報をここで見つけました https://velog.io/@vivala0519/248일차-BOJ-noテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol