The 3n + 1 problem (C语言代码) 摘要:#include "stdafx.h" //不通过 参考int count = 0; int f(int n){ if (n == 1) { int k = count + 1;…… 题解列表 2018年10月31日 0 点赞 0 评论 266 浏览 评分:0.0
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 评论 141 浏览 评分:0.0
The 3n + 1 problem -题解(C语言代码) 摘要:## 解题思路: 根据题意可以知道输入两个数,输出这两个数以及这两个数之间有多少个数满足如下条件,偶数的时候除以2,为奇数的时候乘三加一直到这个数为一停止,最后输出中间有多少数。 ## 注意事项:…… 题解列表 2020年07月10日 0 点赞 0 评论 294 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int i,j=0,n[100],m[100],count=0,sum[100]={0},k=0,a=0…… 题解列表 2017年10月22日 0 点赞 0 评论 660 浏览 评分:0.0
The 3n + 1 problem -题解(C++代码) 摘要:是数据水了 还是我理解错了QAQ 以为会有$1-10^6$这种数据 思路是求出$1-10^6$所有数的循环长度 再用线段树查询 开1e6会爆空间 淦 果然是我想麻烦了 ``` #incl…… 题解列表 2020年10月15日 0 点赞 0 评论 196 浏览 评分:0.0
题解 1095: The 3n + 1 problem 摘要:解题思路:注意事项:还得先比较输入的两个数的大小!!!参考代码#include<stdio.h> int main() { int a,b,m,n,j,temp; int su…… 题解列表 2023年04月03日 0 点赞 0 评论 62 浏览 评分:0.0
The 3n + 1 problem,goto真好用! 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义变量a, b, c和数组d,l用…… 题解列表 2024年11月11日 0 点赞 0 评论 94 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:解题思路:这个问题其实很简单,无非就是先把输入的数据先存储起来,在对每组数据进行一个找最大周期长度的过程,存储的话我用的是vector,找最大周期长度写一个while循环注意事项:1、算最大周期长度要…… 题解列表 2018年09月04日 0 点赞 0 评论 484 浏览 评分:0.0
The 3n + 1 problem (Java代码) 摘要:解题思路:注意事项:1.注意n*3可能int型不够用,用long2.输入的时候可能a比b大,所以要换位置代入函数。参考代码:import java.util.Scanner; public cl…… 题解列表 2018年02月03日 0 点赞 0 评论 619 浏览 评分:0.0
筛法(赌他不卡我数据 摘要:解题思路:注意事项:参考代码#include <bits/stdc++.h>using namespace std;int a[1001000];int fuck(int x) { int ans =…… 题解列表 2021年04月16日 0 点赞 0 评论 153 浏览 评分:0.0