문제 링크입니다: https://www.acmicpc.net/problem/1145
1145번: 적어도 대부분의 배수
첫째 줄에 다섯 개의 자연수가 주어진다. 100보다 작거나 같은 자연수이고, 서로 다른 수이다.
www.acmicpc.net
완전탐색법으로 쉽게 풀 수 있는 문제였습니다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <vector> | |
using namespace std; | |
int main(void) | |
{ | |
ios_base::sync_with_stdio(0); | |
cin.tie(0); | |
vector<int> v(5); | |
int high = 0; | |
for (int i = 0; i < 5; i++) | |
{ | |
cin >> v[i]; | |
} | |
int num = 1; | |
while (1) | |
{ | |
int cnt = 0; | |
for (int i = 0; i < 5; i++) | |
{ | |
if (num >= v[i] && num % v[i] == 0) | |
{ | |
cnt++; | |
} | |
} | |
if (cnt >= 3) | |
{ | |
cout << num << "\n"; | |
break; | |
} | |
num++; | |
} | |
return 0; | |
} |


개발환경:Visual Studio 2017
지적, 조언, 질문 환영입니다! 댓글 남겨주세요~
반응형
'알고리즘 > BOJ' 카테고리의 다른 글
백준 3036번 링 (0) | 2019.10.21 |
---|---|
백준 15736번 청기 백기 (0) | 2019.10.21 |
백준 2501번 약수 구하기 (0) | 2019.10.21 |
백준 1253번 좋다 (2) | 2019.10.21 |
백준 2467번 용액 (0) | 2019.10.21 |