51NOD-1027 大數乘法【大數】
阿新 • • 發佈:2019-01-07
基準時間限制:1 秒 空間限制:131072 KB 分值: 0 難度:基礎題
給出2個大整數A,B,計算A*B的結果。
Input
第1行:大數A
第2行:大數B
(A,B的長度 <= 1000,A,B >= 0)
Output
輸出A * B
Input示例
123456
234567
Output示例
28958703552
問題分析:這是一個大數乘法問題,用Python語言編寫程式最為簡單。
程式說明:(無)
題記:(略)
參考連結:(略)
AC的Python語言程式如下:
# 51NOD-1027 大數乘法 a = int(input()) b = int(input()) print(a * b)
AC的Java語言程式如下:
/* 51NOD-1027 大數乘法 */ import java.math.BigInteger; import java.util.Scanner; public class Main { public static Scanner s = new Scanner(System.in); public static void main(String args[]) throws Exception { Scanner in = new Scanner(System.in); BigInteger a = in.nextBigInteger(); BigInteger b = in.nextBigInteger(); System.out.println(a.multiply(b)); } }