쌓고 쌓다
[프로그래머스] 소수 만들기 C++ 풀이 본문
https://programmers.co.kr/learn/courses/30/lessons/12977?language=cpp
전체 코드
#include <vector>
#include <iostream>
using namespace std;
int solution(vector<int> nums) {
int answer = 0;
for(int i=0;i<nums.size();i++)
for(int j=i+1;j<nums.size();j++)
for(int k=j+1;k<nums.size();k++)
{
bool able = true;
int sum = nums[i]+nums[j]+nums[k];
for(int z=2;z<sum;z++)
{
if(sum%z==0){
able=false;
break;
}
}
if(able)
answer++;
}
return answer;
}
소수는 1과 자기 자신을 제외한 수로 나눌 수 없는 수입니다.
그래서 2부터 자기 자신보다 작은 수를 이용해, 자기자신을 나눈 나머지가 0이면 그것은 소수가 아닙니다.
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] K번째수 C++ 풀이 (0) | 2022.06.28 |
---|---|
[프로그래머스] 완주하지 못한 선수 C++ 풀이 (0) | 2022.06.28 |
[프로그래머스] 내적 C++ 풀이 (0) | 2022.06.27 |
[프로그래머스] 음양 더하기 C++ 풀이 (0) | 2022.06.27 |
[프로그래머스] 없는 숫자 더하기 C++ 풀이 (0) | 2022.06.27 |
Comments