제출 #1238194

#제출 시각아이디문제언어결과실행 시간메모리
1238194ayathkArranging Shoes (IOI19_shoes)C++20
컴파일 에러
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;
}

컴파일 시 표준 에러 (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