# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
91841 |
2018-12-30T10:07:15 Z |
art85 |
Prosjek (COCI14_prosjek) |
C++14 |
|
2 ms |
504 KB |
#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] << " ";
}
}
# |
Verdict |
Execution time |
Memory |
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 |