728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181929?language=cpp
소스코드
#include <string>
#include <vector>
#include <cmath>
using namespace std;
int solution(vector<int> num_list) {
int answer = 0;
int a = 0;
int b = 1;
for (size_t i = 0; i < num_list.size(); i++)
{
a += num_list[i];
b *= num_list[i];
}
a = pow(a, 2);
return b > a ? 0 : 1;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.0 마지막 두 원소 C++ (0) | 2023.08.04 |
---|---|
[프로그래머스]Lv.0 이어 붙인 수 C++(int to string, string to int) (0) | 2023.08.04 |
[프로그래머스]Lv.0 주사위 게임 2 C++ (set의 활용 (0) | 2023.08.04 |
[프로그래머스]Lv.0 등차수열의 특정한 항만 더하기C++ (0) | 2023.08.04 |
[프로그래머스]Lv.2 H-Index C# (0) | 2023.08.04 |