#include "gap.h"
long long findGap(int t, int n)
{
if(t==2)
{
long long mn,mx;
MinMax(-1e18,1e18,&mn,&mx);
long long k=mx-mn;
long long x = (k+n-1)/n;
long long z=x,l=mn,ll=l;
while(l<mx)
{
long long p,q;
MinMax(l+1,l+x,&p,&q);
if(~p)
{
if(p-ll>z)z=p-ll;
ll=q;
l+=x;
}
else
{
l+=x;
}
}
return z;
}
else
{
long long mn,mx;
MinMax(-1e18,1e18,&mn,&mx);
long long z=0;
while(mx-mn>1)
{
long long p,q;
MinMax(mn+1,mx-1,&p,&q);
if(~p)
{
if(p-mn>z)z=p-mn;
if(mx-q>z)z=mx-q;
mn=p,mx=q;
}
else if(mx-mn>z)z=mx-mn;
}
return z;
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3062 ms |
344 KB |
Time limit exceeded |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Correct |
0 ms |
344 KB |
Output is correct |
4 |
Correct |
0 ms |
344 KB |
Output is correct |
5 |
Correct |
0 ms |
344 KB |
Output is correct |
6 |
Execution timed out |
3088 ms |
344 KB |
Time limit exceeded |
7 |
Execution timed out |
3039 ms |
344 KB |
Time limit exceeded |
8 |
Execution timed out |
3008 ms |
344 KB |
Time limit exceeded |
9 |
Execution timed out |
3026 ms |
344 KB |
Time limit exceeded |
10 |
Correct |
0 ms |
344 KB |
Output is correct |
11 |
Execution timed out |
3050 ms |
344 KB |
Time limit exceeded |
12 |
Execution timed out |
3046 ms |
344 KB |
Time limit exceeded |
13 |
Execution timed out |
3072 ms |
344 KB |
Time limit exceeded |
14 |
Execution timed out |
3048 ms |
340 KB |
Time limit exceeded |
15 |
Execution timed out |
3053 ms |
596 KB |
Time limit exceeded |
16 |
Execution timed out |
3049 ms |
612 KB |
Time limit exceeded |
17 |
Execution timed out |
3034 ms |
532 KB |
Time limit exceeded |
18 |
Execution timed out |
3047 ms |
620 KB |
Time limit exceeded |
19 |
Execution timed out |
3010 ms |
612 KB |
Time limit exceeded |
20 |
Correct |
6 ms |
592 KB |
Output is correct |
21 |
Execution timed out |
3033 ms |
1184 KB |
Time limit exceeded |
22 |
Execution timed out |
3095 ms |
1188 KB |
Time limit exceeded |
23 |
Execution timed out |
3027 ms |
1188 KB |
Time limit exceeded |
24 |
Execution timed out |
3063 ms |
1084 KB |
Time limit exceeded |
25 |
Execution timed out |
3048 ms |
1172 KB |
Time limit exceeded |
26 |
Execution timed out |
3023 ms |
1192 KB |
Time limit exceeded |
27 |
Execution timed out |
3044 ms |
1188 KB |
Time limit exceeded |
28 |
Execution timed out |
3044 ms |
1108 KB |
Time limit exceeded |
29 |
Execution timed out |
3039 ms |
1188 KB |
Time limit exceeded |
30 |
Correct |
23 ms |
1164 KB |
Output is correct |
31 |
Correct |
0 ms |
344 KB |
Output is correct |
32 |
Correct |
0 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Correct |
0 ms |
344 KB |
Output is correct |
4 |
Correct |
0 ms |
344 KB |
Output is correct |
5 |
Correct |
1 ms |
344 KB |
Output is correct |
6 |
Correct |
0 ms |
344 KB |
Output is correct |
7 |
Correct |
0 ms |
344 KB |
Output is correct |
8 |
Correct |
0 ms |
344 KB |
Output is correct |
9 |
Correct |
0 ms |
344 KB |
Output is correct |
10 |
Correct |
0 ms |
344 KB |
Output is correct |
11 |
Correct |
1 ms |
344 KB |
Output is correct |
12 |
Correct |
1 ms |
344 KB |
Output is correct |
13 |
Correct |
1 ms |
344 KB |
Output is correct |
14 |
Correct |
1 ms |
344 KB |
Output is correct |
15 |
Correct |
1 ms |
344 KB |
Output is correct |
16 |
Correct |
10 ms |
624 KB |
Output is correct |
17 |
Correct |
10 ms |
616 KB |
Output is correct |
18 |
Correct |
9 ms |
600 KB |
Output is correct |
19 |
Correct |
10 ms |
632 KB |
Output is correct |
20 |
Correct |
5 ms |
588 KB |
Output is correct |
21 |
Correct |
39 ms |
1192 KB |
Output is correct |
22 |
Correct |
38 ms |
1188 KB |
Output is correct |
23 |
Correct |
40 ms |
1188 KB |
Output is correct |
24 |
Correct |
38 ms |
1184 KB |
Output is correct |
25 |
Correct |
50 ms |
1172 KB |
Output is correct |
26 |
Correct |
50 ms |
1052 KB |
Output is correct |
27 |
Correct |
38 ms |
1188 KB |
Output is correct |
28 |
Correct |
38 ms |
1188 KB |
Output is correct |
29 |
Correct |
38 ms |
1216 KB |
Output is correct |
30 |
Correct |
21 ms |
1040 KB |
Output is correct |
31 |
Correct |
0 ms |
344 KB |
Output is correct |
32 |
Correct |
0 ms |
344 KB |
Output is correct |