# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
76776 | dereotu | Prosjek (COCI14_prosjek) | C++17 | 2 ms | 824 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>
#define endl '\n'
#define space ' '
#define st first
#define nd second
#define pb push_back
#define mp make_pair
#define ii pair <int,int>
#define iii pair < int,pair <int,int> >
#define vi vector <int>
#define vii vector < pair<int,int> >
#define forr(i,A,B) for(int i=A;i<B;++i)
#define input(file) freopen(file,"r",stdin)
#define output(file) freopen(file,"w",stdout)
using namespace std;
int n,a[105];
int main(){
cin>>n;
forr(i,0,n) cin>>a[i];
long long total = a[0];
cout<<a[0]<<space;
forr(i,1,n){
long long val = a[i] * (i+1);
// cout<<"xd "<<val<<space<<total<<endl;
cout<< (val - total) << space;
total += (val - total);
}
cout<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |