Submission #634130

#TimeUsernameProblemLanguageResultExecution timeMemory
634130ngano_upat_naProsjek (COCI14_prosjek)C++17
50 / 50
1 ms212 KiB
#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 timeMemoryGrader output
Fetching results...