Submission #710670

#TimeUsernameProblemLanguageResultExecution timeMemory
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...