Make Unreal REAL.
article thumbnail
Level 0. 원소들의 곱과 합

 

 

#include <iostream>
#include <vector>
#include <cmath>
#include <numeric>

using namespace std;

int solution(vector<int> n)
{
    int product = accumulate(n.begin(), n.end(), 1, ::multiplies<int>());
    int sum_pow = pow(accumulate(n.begin(), n.end(), 0), 2);

    return product < sum_pow;
}

'자료구조 & 알고리즘 > 프로그래머스' 카테고리의 다른 글

Level 3. 정수 삼각형  (0) 2023.07.12
Level 2. 거리두기 확인하기  (0) 2023.07.11
Level 2. [3차] 방금그곡  (0) 2023.07.09
Level 2. 우박수열 정적분  (0) 2023.07.08
Level 2. 괄호 변환  (0) 2023.07.07
profile

Make Unreal REAL.

@diesuki4

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!

검색 태그