Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- col -1 from CursorWindow
- cmd1
- pwable.kr
- python
- 파이썬
- 클라우드가 뭐야
- 나이순 정렬
- 쏘큩
- 페니빙
- 포너블
- 액션바 필요없숴
- 6566
- 코틀린
- UNIQUE constraint failed
- pwnable.kr
- Make sure the Cursor is initialized correctly before accessing data for it.
- cmd2
- kotlin
- 블록체인
- tlqkf
- 애너그램 그룹
- SQLiteConstraintException
- 백준
- pwnable
- Docker
- java.lang.IllegalStateException
- Couldn't read row 0
- 10814
- 클라우드란?
- Drive-By-Download
Archives
- Today
- Total
푸르미르
[python]13706. 제곱근 본문
제곱근을 구하는 것인데 이분탐색으로 구하여야만
통과할 수 있는 문제다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
n = int(input())
lt = 1
rt = n
mid = n//2
while 1:
if mid**2 == n:
print(mid)
break
elif mid**2 > n:
rt = mid-1
mid = (lt+rt)//2
else:
lt = mid+1
mid = (lt+rt)//2
|
cs |
'Baekjoon Online Judge' 카테고리의 다른 글
[c++]2309.일곱난쟁이 (0) | 2021.09.21 |
---|---|
[python]1182. 부분수열의 합 (0) | 2021.04.29 |
[python]7568. 덩치 (2) | 2021.04.29 |
[python]1914.하노이 탑 (0) | 2021.02.11 |
[python]10814.나이순 정렬 (4) | 2021.02.03 |