# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
91841 | art85 | Prosjek (COCI14_prosjek) | C++14 | 2 ms | 504 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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 |
---|---|---|---|---|
Fetching results... |