본문 바로가기
프로그래머스

[프로그래머스] x만큼 간격이 있는 n개의 숫자

by 소금_msg 2022. 11. 28.
class Solution {
    public long[] solution(int x, int n) {
        long[] answer = new long[n];
        
        if(x==0){
            return answer;
        }
        
        for(int i=1; i<=n; i++){
            answer[i-1]=(long)x*i;
        }
        
        return answer;
    }
}

 

 

13,14 케이스에서 계속 실패가 떠서

 

for(int i=1; i<=n; i++){
            answer[i-1]=(long)x*i; 
        }

 

long타입으로 파싱해주었더니 통과했다.