Pell数列非递归模式 摘要:解题思路:参照斐波那契数列的通项公式 f[i] = f[i-1] + f[i-2]类似的只需要在f2上*2最后f3%32376即可。注意事项:循环里面的计数要从2开始!参考代码:#include i…… 题解列表 2022年11月22日 0 点赞 0 评论 230 浏览 评分:8.4
3021: Pell数列 摘要:解题思路:Pell数列DP方法!要就复制吧,爱就点赞吧!注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int a[1000005]=…… 题解列表 2023年01月03日 0 点赞 2 评论 472 浏览 评分:9.9
3021: Pell数列 摘要:```cpp #include using namespace std; int a[1000005]={0,1,2},k=0,n; int main() { cin>>n; …… 题解列表 2023年01月09日 0 点赞 2 评论 313 浏览 评分:9.9
3021基础解法(Python) 摘要:注意事项:题目下标问题参考代码:n_num = int(input())for i in range(n_num) : n_in = int(input()) if n_in == 1 :…… 题解列表 2023年02月28日 0 点赞 0 评论 160 浏览 评分:9.9
3021: Pell数列 摘要: import java.util.*; public class Pell数列 { public static void main(String[] args) { Scanner s…… 题解列表 2023年03月01日 0 点赞 0 评论 256 浏览 评分:9.9
3021————Pell数列(仿) 摘要: import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2023年03月03日 0 点赞 0 评论 163 浏览 评分:0.0
python PEll数列解法 摘要:n=int(input())X=[]X1=[]for i in range(n): X.append(int(input()))for i in range(n): if X[i]==1:…… 题解列表 2023年03月04日 0 点赞 0 评论 129 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int x){ int f1=1,f2=2,i,f3; if (x == 1) return f1…… 题解列表 2023年06月16日 0 点赞 0 评论 134 浏览 评分:8.0
C语言解决pell问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>long long a[1000001] = {}, b[1000001]; //声明储存输出和输入的数组int n, i, j, k…… 题解列表 2023年10月08日 0 点赞 1 评论 244 浏览 评分:9.9
3021:解决Pell数列的两种方法 摘要:解题思路:注意事项:递归题不给用递归不然会超时参考代码:递归法: #include<stdio.h>long long int pell(long long int n){ if(n==1) ret…… 题解列表 2023年11月03日 0 点赞 0 评论 144 浏览 评分:9.9