집게사장의 꿈

백준 C# 49768592 최대공약수와 최소공배수 본문

기타/백준

백준 C# 49768592 최대공약수와 최소공배수

Krapboss 2024. 7. 11. 20:55

 

문제

 

두 수의 최대 공약수와 최소 공배수를 구하는 문제

 

 

 

해결

 

 

 

유클리드 호제법을  이용한 최대 공약수

두 자연수의 곱을 최대 공약수로 나눈 것이 최소공배수라는 공식을 이용

 

 

internal class E1259 //최대 공약수와 최소 공배수
{
    static void Main(string[] args)
    {
        int GCD(int a, int b)
        {
            if (b == 0) return a;
            else return GCD(b, a % b);
        }

        int[] input = Console.ReadLine().Split().Select(int.Parse).ToArray();
        if (input[0] < input[1]) input.Reverse();
        int g = GCD(input[0], input[1]);
        int l = input[0]* input[1] / g;

        Console.WriteLine($"{g} {l}");
    }
}

 

 

 

 

 

Ref.


https://seunghyum.github.io/algorithm/Euclidean-algorithm/#

 

[Algorithm] 유클리드 호제법(최대공약수 구하기) 공부

정의

seunghyum.github.io

 

'기타 > 백준' 카테고리의 다른 글

백준 C# 2869 달팽이는 나무에 올라가고 싶다.  (0) 2024.07.19
백준 C# 2775 부녀회장이 될거야  (2) 2024.07.14
백준 C# 1259 팰린드롬수  (0) 2024.07.11
백준 C# 15829 Hashing  (0) 2024.07.10
백준 C# 2292 벌집  (0) 2024.07.10