728x90
반응형
#include <vector>
#include <iostream>
using namespace std;
int solution(vector<int> nums) {
int answer = 0;
int flag = 0;
for(int i=0 ; i<nums.size()-2 ; i++){
for(int j=i+1 ; j<nums.size()-1 ; j++){
for(int z=j+1 ; z<nums.size() ; z++){
flag = 0;
for(int k=2 ; k < nums[i]+nums[j]+nums[z] ; k++){
if( (nums[i]+nums[j]+nums[z])%k == 0)
flag = 1;
}
if(flag == 0 ) answer++;
}
}
}
return answer;
}
https://programmers.co.kr/learn/courses/30/lessons/12977
728x90
반응형
'Problem Solving' 카테고리의 다른 글
1-10. 농구 경기 (백준 1159) (0) | 2021.07.07 |
---|---|
1-9. Two City Scheduling (LeetCode 1029) (0) | 2021.07.07 |
1-7. 블라인드 (백준 2799) (0) | 2021.07.07 |
1-6. Pascal's Triangle (LeetCode 118) (0) | 2021.07.07 |
1-5. Plus One (LeetCode 66) (0) | 2021.07.07 |
댓글