https://school.programmers.co.kr/learn/courses/30/lessons/12954
시도 1)
class Solution {
public long[] solution(int x, int n) {
long[] answer = new long[n];
int idx =0;
for(int i=0; i<n;i++)
{
answer[idx++] = x+(i*x);
}
return answer;
}
}
정답
class Solution {
public long[] solution(int x, int n) {
long[] answer = new long[n];
int idx =0;
for(int i=0; i<n;i++)
{
answer[idx++] = (x+((long)i*x));
}
return answer;
}
}
다른 사람의 풀이
import java.util.*;
class Solution {
public static long[] solution(int x, int n) {
long[] answer = new long[n];
answer[0] = x;
for (int i = 1; i < n; i++) {
answer[i] = answer[i - 1] + x;
}
return answer;
}
}
class Solution {
public long[] solution(int x, int n) {
long[] answer = new long[n];
long sum = 0;
for(int i = 0;i<answer.length;i++){
sum += x;
answer[i] = sum;
}
return answer;
}
}
'Java > 프로그래머스' 카테고리의 다른 글
[JAVA] 프로그래머스 - 나머지가 1이 되는 수 찾기 (0) | 2024.05.16 |
---|---|
[JAVA] 프로그래머스 - 달리기 경주 (0) | 2024.05.16 |
[JAVA] 프로그래머스 - 추억 점수 (0) | 2024.05.15 |
[JAVA] 프로그래머스 - 하샤드 수 (0) | 2024.05.15 |
[JAVA] 프로그래머스 - 평균 구하기 (0) | 2024.05.15 |