Submission #94176

#TimeUsernameProblemLanguageResultExecution timeMemory
94176MrTEKProsjecni (COCI16_prosjecni)C++14
0 / 120
2 ms376 KiB
#include <bits/stdc++.h>

using namespace std;

typedef long long int ll;
typedef pair<int,int> ii;

const int N = 1e5 + 5;

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL); cout.tie(NULL);
  int n;
  cin >> n;
  if (n != 2)
    cout << "-1\n";
}
#Verdict Execution timeMemoryGrader output
Fetching results...