코린이의 소소한 공부노트

[프로그래머스/Lv.0] 등차수열의 특정한 항만 더하기 본문

코딩테스트 풀이/JAVA

[프로그래머스/Lv.0] 등차수열의 특정한 항만 더하기

무지맘 2023. 5. 1. 14:12

1. Input, Output, Example

- 첫째항이 a, 공차가 d인 등차수열에서 included[i]i + 1항을 의미할 때, 이 등차수열의 1항부터 n항까지 includedtrue인 항들만 더한 값을 반환

 

2. Constraint

1) 1 a 100

2) 1 d 100

3) 1 included의 길이 100

4) included에는 true가 적어도 하나 존재한다.

 

3. Code

1) 첫 코드(2023/05/01)

class Solution {
    public int solution(int a, int d, boolean[] included) {
        int answer = 0;
        for(int i=0 ; i<included.length ; i++)
            answer += included[i] ? a+d*i : 0;
        return answer;
    }
}