제출 #32245

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

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

gap.cpp:2:17: warning: extra tokens at end of #include directive
 #include "gap.h";
                 ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...