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타입으로 파싱해주었더니 통과했다.
'프로그래머스' 카테고리의 다른 글
[프로그래머스] 나누어 떨어지는 숫자 배열 (0) | 2022.11.29 |
---|---|
[프로그래머스] 음양 더하기 (0) | 2022.11.29 |
[프로그래머스] 내적 (0) | 2022.11.28 |
[프로그래머스] 가운데 글자 가져오기 (0) | 2022.11.28 |
[프로그래머스] 정수 내림차순으로 배치하기 (0) | 2022.11.28 |