Submission #1183136

#TimeUsernameProblemLanguageResultExecution timeMemory
1183136InvMODProsjek (COCI14_prosjek)C++17
Compilation error
0 ms0 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;
}

Compilation message (stderr)

prosjek.cpp: In function 'int main()':
prosjek.cpp:12:19: error: template argument 1 is invalid
   12 |   #define ll long long;
      |                   ^~~~
prosjek.cpp:14:10: note: in expansion of macro 'll'
   14 |   vector<ll> a(n + 1);
      |          ^~
prosjek.cpp:12:19: error: template argument 2 is invalid
   12 |   #define ll long long;
      |                   ^~~~
prosjek.cpp:14:10: note: in expansion of macro 'll'
   14 |   vector<ll> a(n + 1);
      |          ^~
prosjek.cpp:14:12: error: expected primary-expression before '>' token
   14 |   vector<ll> a(n + 1);
      |            ^
prosjek.cpp:14:14: error: 'a' was not declared in this scope
   14 |   vector<ll> a(n + 1);
      |              ^