https://www.acmicpc.net/problem/2609
1. 아이디어
유클리드 호제법을 이용해서 최대 공약수와 최소 공배수를 간단하게 구할 수 있다.
2. 문제풀이
유클리드 호제법으로 최대 공약수를 구하는 gcd 메서드를 작성하고 gcd를 통해 최소 공배수를 구할 수 있는 lcm 메서드를 작성하는 방식으로 구현했다.
3. 코드
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int A = Integer.parseInt(st.nextToken());
int B = Integer.parseInt(st.nextToken());
System.out.println(gcd(A, B));
System.out.println(lcm(A, B));
}
private static int gcd(int a, int b) {
if (b == 0) return a;
return gcd(b, a % b);
}
private static int lcm(int a, int b) {
return a * b / gcd(a, b);
}
}
4. 후기
'코딩테스트 준비 > 백준' 카테고리의 다른 글
[백준] 13241번 - 최소공배수 [Java] (0) | 2024.12.03 |
---|---|
[백준] 1934번 - 최소공배수 [Java] (0) | 2024.12.03 |
[백준] 11653번 - 소인수분해 [Java] (0) | 2024.12.03 |
[백준] 2581번 - 소수 [Java] (0) | 2024.12.03 |
[백준] 1929번 - 소수 구하기 [Java] (0) | 2024.12.03 |