알고리즘

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

pooney 2022. 12. 19. 18:11

문제 

 

 

내가 해결한 답 

1. int -> long 으로 형변환 진행 x:10000000, n:1000 이 들어오면 int 범위를 초과하여 음수가 나오기 때문이다. 

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