Recent Posts
Notice
No Rules Rules
최소공배수 (feat. 백준, 13241번) 본문
728x90
반응형
최소공배수
https://www.acmicpc.net/problem/13241
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
inline long long gcd(register long long a, register long long b){
if(b == 0)
return a;
return gcd(b, a % b);
}
inline long long lcm(register long long a, register long long b){
return a * b / gcd(a, b);
}
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register long long A, B;
cin >> A >> B;
cout << lcm(A, B);
return 0;
}
// *&)*@*
반응형
최소공배수 (LCM) 를 구하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
수학은 비대면강의입니다 (feat. 백준, 19532번) (0) | 2023.03.20 |
---|---|
Moocast (feat. 백준, 14167번) (0) | 2023.03.16 |
행성 연결 (feat. 백준, 16398번) (0) | 2023.03.15 |
농구 경기 (feat. 백준, 1159번) (0) | 2023.03.15 |
모든 순열 (feat. 백준, 10974번) (0) | 2023.03.15 |
Comments