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
- Coroutine
- 백준 17779
- JVM
- spring security
- 파이썬
- 프로래머스
- 백준 17626
- 백준 19238
- 백준 15685
- spring cloud
- MySQL
- 웹어플리케이션 서버
- JPA
- 백준 16235
- java
- re.split
- Spring Boot
- with recursive
- MSA
- 백준 16719
- java 기술면접
- Kotlin
- 프로그래머스
- spring oauth
- sql 기술면접
- Spring
- 백준 파이썬
- springboot
- 백준 16236
- 백준
Archives
- Today
- Total
시작이 반
[백준] 1654번번 (python 파이썬) 본문
SMALL
첫번째 풀이(실패)
k, n = map(int, input().split(' '))
lans = [int(input()) for _ in range(k)]
min_lan = min(lans)
result = list()
def binary():
global min_lan
left = 1
right = min_lan
prev = (left + right) // 2
while left <= right:
count = 0
for lan in lans:
count += lan // min_lan
if count == n:
if min_lan in result:
break
else:
result.append(min_lan)
mid = (left + right) // 2
if count < n:
right = mid
min_lan = mid
elif count >= n:
left = mid
right = prev
min_lan = (left + right) // 2
binary()
print(max(result))
최종 풀이
k, n = map(int, input().split(' '))
lans = [int(input()) for _ in range(k)]
result = list()
def binary():
left = 1
right = max(lans)
while left <= right:
count = 0
mid = (left + right) // 2
for lan in lans:
count += lan // mid
if count < n:
right = mid - 1
elif count >= n:
left = mid + 1
return right
print(binary())
LIST