제출 #294526

#제출 시각아이디문제언어결과실행 시간메모리
2945267_7_7Prosjek (COCI14_prosjek)C++17
50 / 50
1 ms416 KiB
#include <bits/stdc++.h>

using namespace std;

int main()
{
    ios_base::sync_with_stdio(false);

    int n;
    cin >> n;
    vector<int> a(n);
    for(auto &x: a) cin >> x;

    long long sum = 0;
    for(int i = 1; i <= n; i ++){
        long long x = (i * 1ll * a[i - 1]) - sum;
        cout << x << " ";
        sum += x;
    }
}

#Verdict Execution timeMemoryGrader output
Fetching results...