이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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,preL,preR,res=0;
MinMax(0,1e18,&preL,&preR);
while(1)
{
MinMax(preL+1,preR-1,&L,&R);
res=max(res,max(L-preL,preR-R));
preL=L;
preR=R;
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:24:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |