import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class BJ5347 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
for (int i = 0; i < n; i++) {
String[] sList = br.readLine().split(" ");
int a = Integer.parseInt(sList[0]);
int b = Integer.parseInt(sList[1]);
long answer = Lcm(a, b);
System.out.println(answer);
}
}
private static long Lcm(int a, int b) {
long big,small;
if(a>b){
big = a;
small = b;
} else{
big = b;
small = a;
}
long gcd = Gcd(big, small);
long lcm = (big * small) / gcd;
return lcm;
}
private static long Gcd(long big, long small) {
if (big % small == 0) {
return small;
}
return Gcd(small, big % small);
}
}
풀이
N,M 의 최소공배수를 구하려면 먼저
최대공약수를 유클리드 호제법을 통해 구한다.
최소공배수 = N*M / 최대공약수 이다
최대공약수를 구하는 식은 하나정도 정해서 암기해 두는 것이 좋다.
.
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준 1013] Contact (0) | 2021.05.07 |
---|---|
[백준 2257] 화학식량 (0) | 2021.05.07 |
[백준 10610] 30 (0) | 2021.05.05 |
[백준1238] 파티 (0) | 2021.05.05 |
[백준14465] 소가 길을 건너간 이유 5 (0) | 2021.05.05 |
댓글