Skip to content

Commit

Permalink
[Silver III] Title: 통계학, Time: 404 ms, Memory: 57704 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
boyamie committed Jan 14, 2025
1 parent 8a1074c commit c799e6a
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
43 changes: 43 additions & 0 deletions 백준/Silver/2108. 통계학/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# [Silver III] 통계학 - 2108

[문제 링크](https://www.acmicpc.net/problem/2108)

### 성능 요약

메모리: 57704 KB, 시간: 404 ms

### 분류

구현, 수학, 정렬

### 제출 일자

2025년 1월 14일 23:44:46

### 문제 설명

<p>수를 처리하는 것은 통계학에서 상당히 중요한 일이다. 통계학에서 N개의 수를 대표하는 기본 통계값에는 다음과 같은 것들이 있다. 단, N은 홀수라고 가정하자.</p>

<ol>
<li>산술평균 : N개의 수들의 합을 N으로 나눈 값</li>
<li>중앙값 : N개의 수들을 증가하는 순서로 나열했을 경우 그 중앙에 위치하는 값</li>
<li>최빈값 : N개의 수들 중 가장 많이 나타나는 값</li>
<li>범위 : N개의 수들 중 최댓값과 최솟값의 차이</li>
</ol>

<p>N개의 수가 주어졌을 때, 네 가지 기본 통계값을 구하는 프로그램을 작성하시오.</p>

### 입력

<p>첫째 줄에 수의 개수 N(1 ≤ N ≤ 500,000)이 주어진다. 단, N은 홀수이다. 그 다음 N개의 줄에는 정수들이 주어진다. 입력되는 정수의 절댓값은 4,000을 넘지 않는다.</p>

### 출력

<p>첫째 줄에는 산술평균을 출력한다. 소수점 이하 첫째 자리에서 반올림한 값을 출력한다.</p>

<p>둘째 줄에는 중앙값을 출력한다.</p>

<p>셋째 줄에는 최빈값을 출력한다. 여러 개 있을 때에는 최빈값 중 두 번째로 작은 값을 출력한다.</p>

<p>넷째 줄에는 범위를 출력한다.</p>

18 changes: 18 additions & 0 deletions 백준/Silver/2108. 통계학/통계학.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import sys
input = sys.stdin.readline
n = int(input())
lst = []
for i in range(n):
lst.append(int(input()))
print(round(sum(lst)/n))
print(sorted(lst)[n//2])
from collections import Counter
counter = Counter(lst)
many = counter.most_common()
many.sort(key=lambda x: (-x[1], x[0]))
if len(many)>1 and many[0][1] == many[1][1]:
mode = many[1][0]
else:
mode = many[0][0]
print(mode)
print(max(lst)-min(lst))

0 comments on commit c799e6a

Please sign in to comment.