본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 17869번 Simple Collatz Sequence

by 현장 2024. 8. 13.

-Code

n = int(input())
res = 0

while n > 1:
    if n % 2 == 0:
        n //= 2
    else:
        n += 1
    res += 1

print(res)