基准时间限制:4 秒 空间限制:131072 KB 分值: 160 难度:6级算法题
给出2个大整数A,B,计算A / B和A Mod B的结果。
Input
第1行:大数A 第2行:大数B (A,B的长度 <= 100000,A,B >= 0)
Output
第1行:A / B 第2行:A Mod B (A % B)
Input示例
987654321 1234
Output示例
800368 209
题目链接:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1029
分析:学了简单的Java,就来体验了一波Java的爽感,Java大法真的好啊!
下面给出AC代码:
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 }
时间: 2024-10-06 20:36:53