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

HDU 5050

时间:2014-10-07 00:42:42      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   java   for   

http://acm.hdu.edu.cn/showproblem.php?pid=5050

大数gcd

bubuko.com,布布扣
import java.io.* ;
import java.math.* ;
import java.util.* ;
import java.text.* ;

public class Main 
{
    public static void main(String[] args) 
    {
        Scanner cin=new Scanner (new BufferedInputStream(System.in)) ;
        BigInteger A,B ;
        int t=cin.nextInt() ;
        for (int cas=1 ;cas<=t ;cas++) 
        {
            A=cin.nextBigInteger(2) ;
            B=cin.nextBigInteger(2) ;
            System.out.print("Case #"+cas+": ") ;
            System.out.println(A.gcd(B).toString(2)) ;
        }
    }
}
View Code

 

HDU 5050

标签:style   blog   http   color   io   os   ar   java   for   

原文地址:http://www.cnblogs.com/xiaohongmao/p/4008799.html

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