HDU 1402: A * B Problem Plus
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 1402: A * B Problem Plus相关的知识,希望对你有一定的参考价值。
A * B Problem Plus
///@author Sycamore, ZJNU; ///@date 8/4/2017 import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner cin = new Scanner(System.in); while (cin.hasNext()) { BigInteger x = cin.nextBigInteger(), y = cin.nextBigInteger(); System.out.println(x.multiply(y)); } }
以上是关于HDU 1402: A * B Problem Plus的主要内容,如果未能解决你的问题,请参考以下文章
hdu 1402 A * B Problem Plus(FFT)
A * B Problem Plus HDU - 1402 (FFT)
HDU 1402 A * B Problem Plus FFT
A * B Problem Plus HDU - 1402 (FFT)