248일차 - BOJ no.2108
5612 단어 Algorithm DiaryAlgorithm Diary
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)
Author And Source
이 문제에 관하여(248일차 - BOJ no.2108), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@vivala0519/248일차-BOJ-no저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)