이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "gap.h"
using namespace std;
typedef long long ll;
ll mn, mx;
ll findGap(int T, int N)
{
if(T==1)
{
ll up_bound=LONG_LONG_MAX, low_bound=0;
MinMax(low_bound, up_bound, &mn, &mx);
ll a=mn, b=mx;
ll razlika=0;
while(mn!=-1 and up_bound>=low_bound)
{
MinMax(low_bound, up_bound, &mn, &mx);
razlika=max(razlika, max(mn-a, b-mx));
low_bound=mn+1; up_bound=mx-1;
}
return razlika;
}
}
컴파일 시 표준 에러 (stderr) 메시지
gap.cpp: In function 'll findGap(int, int)':
gap.cpp:26:1: warning: control reaches end of non-void function [-Wreturn-type]
26 | }
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |