-Code
n = int(input())
res, flag = 2, False
while True:
temp = res
while True:
if temp == n:
flag = True
break
if temp > n:
break
temp += temp - 1
if flag:
break
res += 1
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 21200번 Forced Choice (0) | 2024.02.26 |
---|---|
[백준/파이썬] 30310번 Finding Forks (0) | 2024.02.25 |
[백준/파이썬] 7130번 Milk and Honey (0) | 2024.02.23 |
[백준/파이썬] 24313번 알고리즘 수업 - 점근적 표기 1 (0) | 2024.02.22 |
[백준/파이썬] 11520번 And Then There Was 5 (0) | 2024.02.21 |