#include <string>
#include <vector>
using namespace std;
vector<long long> solution(int x, int n) {
vector<long long> answer;
answer.push_back(x);
int tmp = x;
for(int i = 0; i < n-1; i++){
answer.push_back(tmp + x);
tmp += x;
}
return answer;
}
그냥 단순히 for문을 사용해서 구현하는 문제 조금만 생각하면 금방 풀 수 있다.