반응형
문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/87389
문제 풀이
n은 3부터 100만까지이므로 단순 브루트포스로 값을 구할 수 있다.
소스 코드
#include <string>
#include <vector>
using namespace std;
int solution(int n) {
int answer = 0;
for(int i=2; i<=n; i++){
if(n%i == 1){
answer = i;
break;
}
}
return answer;
}
반응형
'Programming Solve > 프로그래머스' 카테고리의 다른 글
프로그래머스 Level 1 올클 후기 (0) | 2021.10.31 |
---|---|
프로그래머스 - 키패드 누르기 / C++ (0) | 2021.10.17 |
프로그래머스 - 위클리 챌린지 8주차, 최소직사각형 / C++ (0) | 2021.10.05 |
프로그래머스 위클리 챌린지 4주차 - 직업군 추천하기 / C++ (0) | 2021.09.23 |
프로그래머스 - 위클리 챌린지 1주차, 부족한 금액 계산하기 / C++ (0) | 2021.09.07 |