제출 #1183138

#제출 시각아이디문제언어결과실행 시간메모리
1183138InvMOD평균 (COCI14_prosjek)C++17
50 / 50
0 ms328 KiB
#include<bits/stdc++.h>

using namespace std;

int main()
{
  ios_base::sync_with_stdio(0);
  cin.tie(0); cout.tie(0);
  
  int n; cin >> n;
  
  #define ll long long
  
  vector<ll> a(n + 1);
  for(int i = 1; i <= n; i++){
    cin >> a[i];
  }
  
  for(int i = 1; i <= n; i++){
    if(i > 1){
      cout << (1ll * a[i] * i) - (1ll * a[i - 1] * (i - 1)) <<" ";
    }
    else{
      cout << a[i] << " ";
    }
  } cout << "\n";
  return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...