[TIL/ES] int ๊ฐ ๋ฒ์ ๋ฒ์ด๋๋ ๊ฒฝ์ฐ
import java.util.*;
class Solution {
public long[] solution(int x, int n) {
long[] answer = new long[n];
for(int i = 0; i<n; i++){
answer[i]= (i+1)*(long)x;
}
return answer;
}
}
answer[i] = (i+1) * x ๋ก ๊ฐ์ ๋ด๋ ๊ฒฝ์ฐ int๊ฐ์์ long์ผ๋ก ๋์ด๊ฐ๊ธฐ ๋๋ฌธ์ int ๊ฐ ์ค๋ฒํ๋ก์ฐ๊ฐ ์ผ์ด๋๋ค.
๋ฐ๋ผ์ ๊ณ์ฐ ๊ณผ์ ์์ ์บ์คํ ์ ํด์ค์ผํ๊ธฐ ๋๋ฌธ์ x๊ฐ ์์ (long)์ผ๋ก ์ง์ ํ๋ณํ์ ํด์ค์ผํจ!
(int->long)
์ต๊ทผ๋๊ธ