nyoj-655-光棍的yy(大斐波那契数列)

Posted 朤尧

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nyoj-655-光棍的yy(大斐波那契数列)相关的知识,希望对你有一定的参考价值。

题目链接

 1 /*
 2 思路:
 3     考察大斐波那契数列
 4 */
 5 import java.util.*;
 6 import java.math.*;
 7 public class Main{
 8 
 9     public static void main(String[] args) {
10         final int MAXN = 205;
11         BigInteger nums[] = new BigInteger[MAXN];
12         nums[1] = BigInteger.ONE;
13         nums[2] = BigInteger.valueOf(2);
14         nums[3] = BigInteger.valueOf(3);
15         for (int i=4; i<MAXN; i++) {
16             nums[i] = nums[i-2].add(nums[i-1]);
17         }
18         Scanner cin = new Scanner(System.in);
19         int t = cin.nextInt();
20         
21         while (t-- > 0) {
22             String str = cin.next();
23             System.out.println(nums[str.length()]);
24         }
25     }
26 } 

 

以上是关于nyoj-655-光棍的yy(大斐波那契数列)的主要内容,如果未能解决你的问题,请参考以下文章

UVA 11582 Colossal Fibonacci Numbers! 大斐波那契数

POJ 3070 + 51Nod 1242 大斐波那契数取余

08《算法入门教程》递归算法之斐波那契数列

Go语言 斐波那契数列的解法

python代码实现斐波那契数列数列

编写一递归函数求斐波那契数列的前40项