일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 장고
- B대면노래방
- codetree
- SQL
- programmers
- Planned
- 마라마라빔
- 종합설계
- 데이터베이스
- minimum spanning tree
- Kruskal
- 파이썬
- 모각코
- 백준
- 그리디알고리즘
- 소프트웨어공학
- DFS
- 실습
- 최소스패닝트리
- 코드트리
- MyPlaylist
- Bellman-Ford
- 백트래킹
- DP
- BFS
- 알고리즘
- django
- 함밥
- 동적계획법
- 프로그래머스
Archives
- Today
- Total
Leta Learns
[모각코] 220813 Today I Learned 본문
<백준 2108번 - 통계학>
최빈값 구하는 거.. 왠지 더 쉬운 방법이 있지 않을까?
이렇게 오래 걸릴 리 없다.
import sys
input = sys.stdin.readline
n = int(input())
num = []
for _ in range(n):
num.append(int(input()))
num.sort()
print(round(sum(num)/n)) #산술평균
print(num[(n-1)//2]) #중앙값
#최빈값
cnt = {}
for i in range(n):
if num[i] not in cnt.keys():
cnt[num[i]] = 1
else:
cnt[num[i]] += 1
cnt = sorted(cnt.items(), key = lambda x:(-x[1], x[0]))
for i in range(len(cnt)):
cnt[i] = list(cnt[i])
if len(cnt) == 1 or cnt[0][1] != cnt[1][1]:
print(cnt[0][0])
else:
print(cnt[1][0])
print(max(num) - min(num)) #범위
딕셔너리 정렬 lambda 관련 내용은
'HUFS > HUFS 모각코 캠프' 카테고리의 다른 글
[모각코] 220820 Today I Learned (0) | 2022.08.20 |
---|---|
[모각코] 220817 Today I Learned (0) | 2022.08.17 |
[모각코] 220810 Today I Learned (0) | 2022.08.10 |
[모각코] 220806 Today I Learned (0) | 2022.08.06 |
[모각코] 220803 Today I Learned (0) | 2022.08.04 |
Comments