728x90
반응형
https://www.acmicpc.net/problem/22193
22193번: Multiply
Write a program that computes a product of two non-negative integers A and B. The integers are represented in decimal notation and have N and M digits, respectively.
www.acmicpc.net
풀이
숫자가 큰 곱셈입니다.
BigInteger을 사용해서 풀어주면 됩니다.
소스코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigInteger;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
br.readLine();
System.out.print(new BigInteger(br.readLine()).multiply(new BigInteger(br.readLine())));
}
}
728x90
반응형
'백준 > 20001 - 25000' 카테고리의 다른 글
[백준] 21756번 : 지우개(JAVA) (0) | 2021.07.25 |
---|---|
[백준] 21771번 : 가희야 거기서 자는 거 아니야(JAVA) (0) | 2021.07.25 |
[백준] 21734번 : SMUPC의 등장(JAVA) (0) | 2021.07.20 |
[백준] 21866번 : 추첨을 통해 커피를 받자(JAVA) (0) | 2021.07.20 |
[백준] 21867번 : Java Bitecode(JAVA) (0) | 2021.07.20 |
댓글