| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 448115 | JovanB | 평균 (COCI14_prosjek) | C++17 | 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 <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
int main(){
    ios_base::sync_with_stdio(false), cin.tie(0);
    cout.precision(10);
    cout << fixed;
    int n;
    cin >> n;
    ll pref = 0;
    for(int i=1; i<=n; i++){
        ll x;
        cin >> x;
        cout << x*i - pref << " ";
        pref = x*i;
    }
    return 0;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
