HDU - 1715 - 大菲波数 - JAVA
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU - 1715 - 大菲波数 - JAVA相关的知识,希望对你有一定的参考价值。
http://acm.hdu.edu.cn/showproblem.php?pid=1715
import java.io.*;
import java.util.*;
import java.math.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
BigInteger f[] = new BigInteger[1005];
f[1] = BigInteger.ONE;
f[2] = BigInteger.ONE;
for (int i = 3; i <= 1000; i++) {
f[i] = f[i - 1].add(f[i - 2]);
}
while (sc.hasNext()) {
int t = sc.nextInt();
while (t-- > 0) {
int n = sc.nextInt();
System.out.println(f[n]);
}
}
sc.close();
}
}
以上是关于HDU - 1715 - 大菲波数 - JAVA的主要内容,如果未能解决你的问题,请参考以下文章
SCAU1143 多少个Fibonacci数--大菲波数杭电-HDOJ-1715--高精度加法--Fibonacci数---大数比较