基准时间限制:1 秒 空间限制:131072 KB 分值: 0 难度:基础题
给出2个大整数A,B,计算A+B的结果。
Input
第1行:大数A 第2行:大数B (A,B的长度 <= 10000 需注意:A B有可能为负数)
Output
输出A + B
Input示例
68932147586 468711654886
Output示例
537643802472
题目链接:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1005
分析:学了简单的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.add(b)); 17 } 18 }
python大法更简单啊!三行代码解决一切问题!
下面给出python3 AC代码:
a=int(input()) b=int(input()) print(a+b)
时间: 2024-12-23 23:46:42