Submission #1238194

#TimeUsernameProblemLanguageResultExecution timeMemory
1238194ayathkArranging Shoes (IOI19_shoes)C++20
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
#define fi first 
#define se second 
#define all(a) a.begin(),a.end()
#define pb push_back
const int maxn = 2e5+1;

int64 count_swaps(vector <int> s){
  if(s[0] > s[1])return 1;
  return 0;
}

Compilation message (stderr)

shoes.cpp:9:1: error: 'int64' does not name a type; did you mean 'int64_t'?
    9 | int64 count_swaps(vector <int> s){
      | ^~~~~
      | int64_t