| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 397595 | victoriad | Prosjek (COCI14_prosjek) | C++14 | 1 ms | 316 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 <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <utility>
#include <queue>
#include <map>
#include <iomanip>
#include <fstream>
using namespace std;
int main(){
  ios::sync_with_stdio(false);
   cin.tie(NULL);
   int n;
   cin>>n;
   vector<int>b(n);
   vector<int>a(n);
   for(int i=0;i<n;i++){
     cin>>b[i];
   }
   a[0]=b[0];
   int x=a[0];
   for(int i=1;i<n;i++){
     int y=b[i]*(i+1);
     a[i]=y-x;
     x+=a[i];
   }
   for(int i=0;i<n;i++){
     cout<<a[i]<<" ";
   }
  return 0;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
