제출 #1084420

#제출 시각아이디문제언어결과실행 시간메모리
1084420MMihalevGap (APIO16_gap)C++14
컴파일 에러
0 ms0 KiB
#include<iostream> #include<algorithm> #include "gap.h" using namespace std; __int64 mn,mx; __int64 findGap(int T,long int N) { __int64 l=-1,r=1000000000000000001LL; long int rem=N; __int64 ans=1; while(rem>0) { MinMax(l+1,r-1,&mn,&mx); if(rem==2)ans=max(ans,mx-mn); if(l!=-1) { ans=max(ans,mn-l); ans=max(ans,r-mx); } if(mn!=mx)rem-=2; else rem--; l=mn; r=mx; } return ans; }

컴파일 시 표준 에러 (stderr) 메시지

gap.cpp:5:1: error: '__int64' does not name a type; did you mean '__int64_t'?
    5 | __int64 mn,mx;
      | ^~~~~~~
      | __int64_t
gap.cpp:6:1: error: '__int64' does not name a type; did you mean '__int64_t'?
    6 | __int64 findGap(int T,long int N)
      | ^~~~~~~
      | __int64_t