Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 몬스터
- nav오브젝트사이거리
- 유니티
- unity git
- 유니티 머지
- 유니티 해상도 변경
- 유니티 브랜치 merge
- M590
- githubdesktopmerge
- nav거리
- networkbehaviourid
- stateauthority
- m585 수리
- 오브젝트 깜빡임
- 유니티 해상도
- navigation
- unity 병합
- 깃허브 데스크탑 합치기
- networkobject
- m590 수리
- NavMesh
- 깃허브 데스크탑 병합
- 유니티 해상도 설정
- unity merge
- m585
- Github DeskTop Merge
- networkobject.networkid
- Unity
- 유니티 합치기
Archives
- Today
- Total
집게사장의 꿈
백준 C# 49768592 최대공약수와 최소공배수 본문
문제
두 수의 최대 공약수와 최소 공배수를 구하는 문제
해결
유클리드 호제법을 이용한 최대 공약수
두 자연수의 곱을 최대 공약수로 나눈 것이 최소공배수라는 공식을 이용
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/#
'기타 > 백준' 카테고리의 다른 글
백준 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 |