-
백준 13241번: 최소공배수정수론(Number theory) 2018. 7. 3. 09:49반응형
https://www.acmicpc.net/problem/13241
1. 문제
두 수의 최소 공배수를 찾는 문제
2. 알고리즘
키워드 - 유클리드 호제법, GCD
3. 코드
123456789101112131415161718192021#include <iostream>#include <cstdio>#include <algorithm>#include <vector>#include <functional> // greater 사용 위해 필요#include <string>#include <map>#include <math.h>using namespace std;long long int gcd(long long int a,long long int b) {return (a % b == 0 ? b : gcd(b,a%b));}int main() {long long int a, b;cin >> a >> b;long long int sol = gcd(a,b);cout << a * b / sol;return 0;}cs 반응형'정수론(Number theory)' 카테고리의 다른 글
백준 1850번: 최대공약수 (0) 2018.07.03 백준 1065번: 한수 (0) 2018.07.03 백준 1019번: 책 페이지 (0) 2018.07.01 백준 4673번: 셀프 넘버 (0) 2018.06.29 백준 10610번: 30 (0) 2018.06.29