# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1093834 | ccc | Prosjek (COCI14_prosjek) | C++17 | 0 ms | 348 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;
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 time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |