#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int MAXN = 105;
int n;
int b[MAXN];
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cin >> n;
for(int i=1; i<=n; i++) cin >> b[i];
ll s = 0;
for(int i=1; i<=n; i++){
int a = b[i]*i-s;
cout << a << " ";
s += a;
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
204 KB |
Output is correct |
4 |
Correct |
0 ms |
204 KB |
Output is correct |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Correct |
0 ms |
204 KB |
Output is correct |
7 |
Correct |
0 ms |
204 KB |
Output is correct |
8 |
Correct |
0 ms |
204 KB |
Output is correct |
9 |
Correct |
0 ms |
204 KB |
Output is correct |
10 |
Correct |
0 ms |
204 KB |
Output is correct |