728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181931?language=cpp
소스코드
#include <string>
#include <vector>
using namespace std;
int solution(int a, int d, vector<bool> included) {
int answer = 0;
for (size_t i = 0; i < included.size(); i++)
{
if (included[i] == true)
answer += a;
a += d;
}
return answer;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.0 원소들의 곱과 합 2 C++ (0) | 2023.08.04 |
---|---|
[프로그래머스]Lv.0 주사위 게임 2 C++ (set의 활용 (0) | 2023.08.04 |
[프로그래머스]Lv.2 H-Index C# (0) | 2023.08.04 |
[프로그래머스]Lv.2 행렬의 곱셈 C# (0) | 2023.08.04 |
[프로그래머스]Lv.2 JadenCase 문자열 만들기 C# (0) | 2023.08.04 |