1095: The 3n + 1 problem 摘要:```cpp #include using namespace std; int main() { int m,n,max; while(cin>>m>>n) {…… 题解列表 2022年08月31日 0 点赞 0 评论 196 浏览 评分:9.9
个人思路,随便看看吧 摘要:解题思路:学会列表的相关操作很重要注意事项:参考代码:def fun(n): l1 = [n] while n != 1: if n % 2 == 0: …… 题解列表 2022年08月22日 0 点赞 0 评论 101 浏览 评分:0.0
The 3n + 1 problem (c++) 摘要:解题思路:真的是又长又臭参考代码:#include<iostream>using namespace std;int main(){ long long count = 1; long l…… 题解列表 2022年07月14日 0 点赞 0 评论 142 浏览 评分:9.9
小南解题--The 3n + 1 problem--118ms 摘要:def f(n): re=1 while n!=1: if n%2==0: n=n/2 else: n=n*3+1 …… 题解列表 2022年06月01日 0 点赞 0 评论 105 浏览 评分:0.0
题解 1095: The 3n + 1 problem 关于超时 摘要:注意事项:关于超时,while(a!=1)我写成while(a>=1)就超时了,不太明白参考代码:#include<iostream> #include<string> using namespa…… 题解列表 2022年05月20日 0 点赞 0 评论 124 浏览 评分:0.0
The 3n + 1 problem 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,max,a,b,rest; while(~scanf("%d %d",&a,&b)) { …… 题解列表 2022年04月30日 0 点赞 0 评论 167 浏览 评分:0.0
1095: The 3n + 1 problem 摘要:解题思路:用 while() 每次接收两个数,用 for() 对两个数间所有数进行遍历,并更新最大循环长度。注意事项:测试用例里面有 num1 > num2 的,一开始完全没意识到,卡了很久。参考代码…… 题解列表 2022年04月27日 0 点赞 0 评论 176 浏览 评分:9.9
The 3n + 1 problem 摘要:解题思路:注意事项:参考代码:def f(x): c=1 while x!=1: if x%2==0: x=x//2 else: …… 题解列表 2022年04月24日 0 点赞 0 评论 139 浏览 评分:0.0
题目化解+操作数函数+赋初值与输入输出解释 摘要:题目简化:1.对于n ,如果n是偶数,则除以2 ;如果n是奇数,乘以3再加1 。这会产生 从n到1的 操作次数。(如n=1时,操作次数为1 ,即 有1个数) 2.对于 每一对输入的整数i和j , 要…… 题解列表 2022年04月06日 0 点赞 0 评论 276 浏览 评分:9.9
题目看了半天就我英语跟屎一样吗 摘要:解题思路:定义函数为求x循环体的长度,因为输入一行输出一行,利用while注意事项:参考代码:def chang(x): a=0 while x>1: if x%2==0: …… 题解列表 2022年04月01日 0 点赞 0 评论 226 浏览 评分:8.0