제출 #32257

#제출 시각아이디문제언어결과실행 시간메모리
32257dqhungdlGap (APIO16_gap)C++14
0 / 100
39 ms5920 KiB
#include <bits/stdc++.h> #include "gap.h"; using namespace std; long long a[100005]; long long findGap(int T, int n) { if(T==1) { long long L,R,res=0,preL=-1,preR=1e18+1; while(1) { MinMax(preL+1,preR-1,&L,&R); res=max(res,max(L-preL,preR-R)); L=preL; R=preR; if(L==-1||L==R) break; } return res; } }

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

gap.cpp:2:17: warning: extra tokens at end of #include directive
 #include "gap.h";
                 ^
gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:23:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...