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 |
Tags
- 쏘큩
- java.lang.IllegalStateException
- 페니빙
- cmd1
- SQLiteConstraintException
- 파이썬
- Drive-By-Download
- python
- 포너블
- 코틀린
- 백준
- 액션바 필요없숴
- col -1 from CursorWindow
- UNIQUE constraint failed
- Couldn't read row 0
- 클라우드가 뭐야
- 애너그램 그룹
- 클라우드란?
- 10814
- pwnable.kr
- pwnable
- 6566
- 블록체인
- tlqkf
- kotlin
- 나이순 정렬
- pwable.kr
- Make sure the Cursor is initialized correctly before accessing data for it.
- Docker
- cmd2
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 |