码迷,mamicode.com
首页 > 编程语言 > 详细

HDU - 1715 - 大菲波数 - JAVA

时间:2019-04-21 09:36:22      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:show   php   tin   imp   exti   java   hdu   out   public   

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

标签:show   php   tin   imp   exti   java   hdu   out   public   

原文地址:https://www.cnblogs.com/Yinku/p/10743594.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!