https://www.acmicpc.net/problem/1773
#include <iostream>
using namespace std;
int main() {
int n, c;
cin >> n >> c;
int *tmp = new int[n];
for (int i = 0; i < n; i++)
cin >> tmp[i];
int flag = 0,cnt = 0;
for (int i = 1; i <= c; i++) {
for (int j = 0; j < n; j++)
{
if (i%tmp[j] == 0)
{
flag = 1;
break;
}
}
if (flag == 1)
{
cnt++;
flag = 0;
}
}
cout << cnt;
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 11721번 : 열 개씩 끊어 출력하기 (0) | 2019.03.06 |
---|---|
[C++] 백준 10409번 : 서버 (0) | 2019.03.06 |
[C++] 백준 1188번 : 음식 평론가 (0) | 2019.03.06 |
[C++] 백준 5612번 : 터널의 입구와 출구 (0) | 2019.03.06 |
[C++] 백준 5575번 : 타임 카드 (0) | 2019.03.05 |