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数列的两种方法 摘要:解题思路:注意事项:递归题不给用递归不然会超时参考代码:递归法: #include<stdio.h>long long int pell(long long int n){ if(n==1) ret…… 题解列表 2023年11月03日 0 点赞 0 评论 144 浏览 评分:9.9
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数列 摘要:解题思路:Pell数列DP方法!要就复制吧,爱就点赞吧!注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int a[1000005]=…… 题解列表 2023年01月03日 0 点赞 2 评论 472 浏览 评分: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
两种方式求解(递归超时,数组➕循环ac) 摘要:解题思路:循环+数组注意事项:因为数据太大,递归会超时,所以采用数组记录已经计算过的数值参考代码:#include<iostream>using namespace std;int f(int n){…… 题解列表 2023年11月13日 0 点赞 0 评论 151 浏览 评分:9.9