#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
long long B[n];
long long A[n];
for(int i = 0; i < n; i++){
cin >> B[i];
}
A[0] = B[0];
long long sum = A[0];
for(int i = 1; i < n; i++){
A[i] = (i+1)*B[i] - sum;
sum += A[i];
}
for(int i = 0; i < n; i++){
cout << A[i] << " ";
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
504 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
3 |
Correct |
2 ms |
256 KB |
Output is correct |
4 |
Correct |
2 ms |
256 KB |
Output is correct |
5 |
Correct |
2 ms |
376 KB |
Output is correct |
6 |
Correct |
2 ms |
376 KB |
Output is correct |
7 |
Correct |
2 ms |
376 KB |
Output is correct |
8 |
Correct |
2 ms |
376 KB |
Output is correct |
9 |
Correct |
2 ms |
376 KB |
Output is correct |
10 |
Correct |
2 ms |
256 KB |
Output is correct |