思路:
1.其实也没啥思路,感觉题目就已经是在报答案了。。。。咳咳,在外层设置一个从1到N+1的for循环。
2.内层就是每一个数的雪花数的最大值,最后退出循环直接输出结果。
3.比赛评测环境,不能加提示性信息。。。(在input()括号里面不能打字!)
start = int(input())
max_1 = 0
for index in range(1,start+1):
while index != 1:
if (index % 2) == 0:
index /= 2
if index >= max_1:
max_1 = index
elif (index % 2) != 0:
index *= 3
index += 1
if index >= max_1:
max_1 = index
if start >= max_1:
max_1 = start
print(max_1)