← Back to List

6190번: Another Cow Number Game ↗

Solutions

Python 3
122 B | 122 chars
n = int(input())
cnt = 0
while n != 1:
    if n % 2 == 1:
        n = n*3 +1
    else:
        n//=2
    cnt+=1
print(cnt)