Submission #1093834

#TimeUsernameProblemLanguageResultExecution timeMemory
1093834cccProsjek (COCI14_prosjek)C++17
50 / 50
0 ms348 KiB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);
    int n;
    cin >> n;
    int b[n], a[n];
    for(int i = 0; i < n; i++){
        cin >> b[i];
    
    }
    a[0] = b[0];
    cout << a[0] << ' ';
    for(int i = 1; i < n; i++){
        a[i] = ((i + 1) * b[i]) - i * b[i - 1];
        cout << a[i] << ' ';
    }
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...