반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- CPP
- 로지스틱 회귀
- 머신러닝
- 그래픽스
- CNN
- 파이썬
- Computer Vision
- Regularization
- petal to metal
- cs231n
- logistic regression
- OpenGL
- C++
- 딥러닝
- 컴퓨터 비전
- 추천 시스템
- neural network
- Support Vector Machine
- Vision
- SVM
- 신경망
- pre-trained
- 컴퓨터 그래픽스
- 인공지능
- Unsupervised learning
- recommender system
- 비용함수
- SGD
- Kaggle
- 백준
Archives
- Today
- Total
kwan's note
백준-2108번 통계학 파이썬 (python code) 본문
반응형
문제번호:15649
난이도: 실버3
입력이 하나일때에 대한 예외처리와
최빈값이 여러개일때의 처리에 유의하면서 풀어보자.
from sys import stdin,exit
from collections import Counter
if __name__ == '__main__':
num= int(stdin.readline().rstrip())
mylist=[(int(stdin.readline().rstrip())) for _ in range(num)]
mylist.sort()
print(round(sum(mylist)/num))
print(mylist[int(num/2)])
cmm=Counter(mylist).most_common()
if(len(mylist)>1):
print(cmm[0][0] if cmm[0][1] >cmm[1][1] else cmm[1][0])
else:
print(mylist[0])
print(mylist[num-1]-mylist[0])
exit()
반응형
'Algorithm > python' 카테고리의 다른 글
백준 15649번 N과 M (3) 파이썬 (python code) (0) | 2021.01.12 |
---|---|
백준-15649번 N과 M (2) 파이썬 (python code) (0) | 2021.01.12 |
백준-15649번 N과 M (1) 파이썬 (python code) (0) | 2021.01.12 |
백준-11399번 ATM 파이썬 (python code) (0) | 2021.01.10 |
백준-2751번 파이썬 input() vs sys.stdin.readline() (0) | 2021.01.10 |