제출 #32258

#제출 시각아이디문제언어결과실행 시간메모리
32258dqhungdlGap (APIO16_gap)C++14
0 / 100
2000 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,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));
            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:24:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...