标签:题目 lis style img 时间 group system gray nod
第1行:大数A 第2行:大数B (A,B的长度 <= 100000,A,B >= 0)
第1行:A / B 第2行:A Mod B (A % B)
987654321 1234
800368 209
1 import java.math.BigInteger; 2 import java.util.Scanner; 3 4 5 public class sss { 6 7 /** 8 * @param args 9 */ 10 public static void main(String[] args) { 11 // TODO Auto-generated method stub 12 Scanner in=new Scanner(System.in); 13 BigInteger a,b; 14 a=in.nextBigInteger(); 15 b=in.nextBigInteger(); 16 System.out.println(a.divide(b)); 17 System.out.println(a.mod(b)); 18 } 19 }
标签:题目 lis style img 时间 group system gray nod
原文地址:http://www.cnblogs.com/ECJTUACM-873284962/p/7235577.html