반응형
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
- cs231n
- logistic regression
- pre-trained
- SGD
- CPP
- Kaggle
- 그래픽스
- 인공지능
- C++
- neural network
- 머신러닝
- 컴퓨터 비전
- petal to metal
- 컴퓨터 그래픽스
- Support Vector Machine
- CNN
- 신경망
- Unsupervised learning
- Computer Vision
- 딥러닝
- 로지스틱 회귀
- SVM
- recommender system
- 백준
- OpenGL
- 파이썬
- Regularization
- 비용함수
- Vision
- 추천 시스템
Archives
- Today
- Total
kwan's note
백준 2217번 로프 파이썬 (python code) 본문
반응형
문제번호 2217
난이도 실버4
로프를 여러개 쓰면 가장 장력이 낮은 줄로 하향평준화된다.
따라서 모든 로프를 쓸 때 즉 N개를 쓰면 가장 낮은 로프의 장력*N이되고
N-1개의 로프를 쓴다고 하면 두번째로 낮은 로프의 장력*N-1이 된다.
이중 max값을 구하는것이므로 i=0부터 N-1까지 모든 로프에 대해 작은것부터 max값을 구하면 된다.
import sys
N = int(sys.stdin.readline().rstrip())
rope =[int(sys.stdin.readline().rstrip()) for _ in range(N)]
rope.sort()
print(max(rope[i]*(N-i) for i in range(N)))
반응형
'Algorithm > python' 카테고리의 다른 글
순열과 조합 (0) | 2021.04.25 |
---|---|
백준 3190 번 뱀 파이썬 (python code) (0) | 2021.04.25 |
백준 11758번 CCW 파이썬 (python code) (0) | 2021.01.17 |
백준 1010번 다리놓기 파이썬 (python code) (1) | 2021.01.17 |
백준 2981번 검문 파이썬 (python code) (1) | 2021.01.16 |