제출 #710670

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

using namespace std;

int main()
{
    int n, tot = 0;
    cin>> n;
    vector<int>b(n+1), a(n+1);
    for(int i = 1; i <= n;++i){
        cin>> b[i];
        a[i] = i*b[i] -tot;
        tot += a[i];
    }
    for (int i= 1; i <= n; ++i){
        cout<< a[i] << ' ';
    }
    cout<< '\n';

    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...