-Code
n = int(input())
cnt = 0
while n > 1:
if n % 2 == 0:
n = n // 2
else:
n = n * 3 + 1
cnt += 1
print(cnt)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 9771번 Word Searching (0) | 2024.08.28 |
---|---|
[백준/파이썬] 6903번 Trident (0) | 2024.08.27 |
[백준/파이썬] 6975번 Deficient, Perfect, and Abundant (0) | 2024.08.25 |
[백준/파이썬] 27512번 스네이크 (0) | 2024.08.24 |
[백준/파이썬] 11294번 Numbers (0) | 2024.08.23 |