#38815: 不能暴力解QQ


lcy920126@gmail.com (LCY)

學校 : 國立臺北大學
編號 : 219523
來源 : [120.126.126.13]
最後登入時間 :
2024-02-24 11:27:44
c039. 00100 - The 3n + 1 problem -- UVa100 | From: [123.194.152.77] | 發表日期 : 2023-12-25 23:18

def func(n):
output = 0
while True:
output += 1
if n == 1:
break
elif i % 2 != 0:
n = n * 3 + 1
else:
n = n // 2
print('%d'%n)

return output

n = int(input())
for i in range(0, n):
a, b = map(int, input().split())
ans = max(func(a), func(b))
print('%d'%ans)



 
 
ZeroJudge Forum