码迷,mamicode.com
首页 > 其他好文 > 详细

L. Twice Equation ACM Nanning 2017

时间:2018-08-24 00:43:09      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:imp   ann   div   pareto   使用   next   .com   anti   span   

https://nanti.jisuanke.com/t/19978

 

acm提交:类 Main

使用java:高精度

BigInteger

 

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
    public static void main(String[] args)
    {
        BigInteger []f=new BigInteger[380];
        BigInteger v;
        int q,i;
        f[1]=BigInteger.valueOf(3);
        f[2]=BigInteger.valueOf(20);
        for (i=3;i<380;i++)
            f[i]=f[i-1].multiply(BigInteger.valueOf(6)).subtract(f[i-2]).add(BigInteger.valueOf(2));
        Scanner in=new Scanner(System.in);
        q=in.nextInt();
        while (q-->0)
        {
            v=in.nextBigInteger();
            for (i=1;i<380;i++)
                if (v.compareTo(f[i])<0)
                    break;
            System.out.println(f[i]);
                    
        }
    }
}

 

L. Twice Equation ACM Nanning 2017

标签:imp   ann   div   pareto   使用   next   .com   anti   span   

原文地址:https://www.cnblogs.com/cmyg/p/9527152.html

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