# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
710670 | ElenaBM | Prosjek (COCI14_prosjek) | C++17 | 1 ms | 340 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, tot = 0;
cin>> n;
vector<int>b(n+1), a(n+1);
for(int i = 1; i <= n;++i){
cin>> b[i];
a[i] = i*b[i] -tot;
tot += a[i];
}
for (int i= 1; i <= n; ++i){
cout<< a[i] << ' ';
}
cout<< '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |