# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
201438 | EmmanuelAC | Prosjek (COCI14_prosjek) | C++14 | 5 ms | 376 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;
#define ll long long
int main(){
ll n; cin >> n;
ll acum = 0;
for(int i=1; i<=n; i++){
ll aux; cin >> aux;
aux = aux * i;
aux -= acum;
cout << aux << " ";
acum += aux;
}
cout << "\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |