Submission #953255

#TimeUsernameProblemLanguageResultExecution timeMemory
953255ind1vProsjek (COCI14_prosjek)C++11
50 / 50
1 ms348 KiB
#include <bits/stdc++.h> using namespace std; const int N = 1e2 + 5; int n; int b[N]; int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n; for (int i = 1; i <= n; i++) { cin >> b[i]; } for (int i = 1; i <= n; i++) { cout << 1LL * b[i] * i - (1LL * b[i - 1] * (i - 1)) << ' '; } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...