728x90
https://www.acmicpc.net/problem/1934
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int testCase;
cin >> testCase;
for (int i = 0; i < testCase; i++) {
int a, b;
cin >> a >> b;
int lcm;
for (int i = 1; ; i++) {
if (i * max(a, b) % a == 0 && i * max(a, b) % b == 0) {
lcm = i * max(a, b);
break;
}
}
cout << lcm << '\n';
}
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 2475번 검증수 (0) | 2020.02.29 |
---|---|
[백준] 15657번 N과 M (8) (0) | 2020.02.29 |
[백준] 5598번 카이사르 암호 (0) | 2020.02.29 |
[백준] 2609번 최대공약수와 최소공배수 (0) | 2020.02.29 |
[백준] 11048번 이동하기 (0) | 2020.02.29 |