# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
738503 | mzv | Prosjek (COCI14_prosjek) | C++17 | 1 ms | 336 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 ccd ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define ll long long
#define endl '\n'
using namespace std;
/* ------------------------ hi lol ------------------------ */
int n;
ll num,ans,sum=0;
int main() {
ccd
cin >> n;
for (int nm=1;nm<=n;nm++) {
cin >> num;
ans = (num*nm)-sum;
// cout << nm << " " << num << " " << sum << " " << ans << endl;
cout << ans;
if (nm<n) cout << " ";
sum+=ans;
}
cout << endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |