일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 매일11시
- Android
- Kotlin
- 괄호
- 백준
- Python
- 앱
- 파이썬
- lcm
- 홈화면
- permutation
- 11054
- Combination
- 9095
- 6603
- 뒤로가기
- 순열
- LCS
- 1260
- 코틀린
- 11057
- itertools
- 11053
- 최소공배수
- 1182
- 안드로이드
- 코테
- 11기
- 나머지
- expo
Archives
- Today
- Total
황소개발자
백준 2217 파이썬 python 로프 본문
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
n = int(input())
arr = []
for i in range(n):
tmp = int(input())
arr.sort(reverse = True)
weight = 0
for i in range(n):
if weight < (i + 1) * arr[i]:
weight = (i + 1) * arr[i]
print(weight)
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
로프 좋은놈부터 선택한다. 이제 안좋은걸 더 쓰려고할 때, 얘가 중량을 견딜 수 있는지 비교해준다.
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 11053 파이썬 python (0) | 2019.11.01 |
---|---|
백준 11727 파이썬 python (0) | 2019.10.31 |
백준 5585 파이썬 python 거스름돈 (0) | 2019.10.29 |
백준 1931 파이썬 python 회의실배정 (0) | 2019.10.28 |
백준 11047 파이썬 python 동전 0 @@황소처럼 우직하게@@ (0) | 2019.10.27 |
Comments