# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
634130 | ngano_upat_na | Prosjek (COCI14_prosjek) | C++17 | 1 ms | 212 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;
using ll = long long;
void sol() {
int n;
cin >> n;
ll sum = 0;
for (ll i=1; i<=n; i++) {
ll a; cin >> a;
ll total = i * a;
ll res = total - sum;
sum += res;
cout << res;
if (i != n) cout << ' ';
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int t = 1;
// cin >> t;
while (t--) {
sol();
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |