https://programmers.co.kr/learn/courses/30/lessons/12953
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
|
#include <string>
#include <vector>
using namespace std;
// 최대 공약수
int GCD(int A, int B)
{
if (B == 0)
{
return A;
}
return GCD(B, A % B);
}
// 최소 공배수
int LCM(int A, int B)
{
return A * B / GCD(A, B);
}
int solution(vector<int> arr) {
int t_LCM = 1;
for (int i = 0; i < arr.size(); i++)
{
t_LCM = LCM(t_LCM, arr[i]);
}
return t_LCM;
}
Colored by Color Scripter
|
최대공약수 / 최소공배수에 대한 자세한 풀이는 여기로..
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스]완전탐색 : 숫자 야구 (level 2)(c++) (0) | 2020.05.04 |
---|---|
[프로그래머스]정렬 : H-Index (level 2) (c++) (0) | 2020.05.03 |
[프로그래머스]완전탐색 : 소수 찾기 (level 2)(c++) (2) | 2020.04.30 |
[프로그래머스]연습문제 : 124 나라의 숫자 (level 2) (c++) (0) | 2020.04.30 |
[프로그래머스]스택/큐 : 다리를 지나는 트럭 (level 2)(c++) (0) | 2020.04.30 |
댓글