#include <bits/stdc++.h>
#include "gap.h"
using namespace std;
#define ll long long
ll findGap(int T, int n)
{
vector<ll> a, b;
ll l = 0, r = 1e18;
long long mn, mx;
while (1)
{
MinMax(l, r, &mn, &mx);
if (mx == -1)
break;
a.push_back(mn);
b.push_back(mx);
l = mn + 1, r = mx - 1;
}
reverse(b.begin(), b.end());
ll ans = 0;
int last = a[0];
for (auto &i : a)
{
ans = max(ans, i - last);
last = i;
}
for (auto &i : b)
{
ans = max(ans, i - last);
last = i;
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Runtime error |
0 ms |
344 KB |
Execution failed because the return code was nonzero |
3 |
Runtime error |
1 ms |
344 KB |
Execution failed because the return code was nonzero |
4 |
Runtime error |
0 ms |
344 KB |
Execution failed because the return code was nonzero |
5 |
Runtime error |
0 ms |
344 KB |
Execution failed because the return code was nonzero |
6 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
7 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
8 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
9 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
10 |
Runtime error |
0 ms |
344 KB |
Execution failed because the return code was nonzero |
11 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
12 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
13 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
14 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
15 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
16 |
Incorrect |
7 ms |
856 KB |
Output isn't correct |
17 |
Incorrect |
6 ms |
856 KB |
Output isn't correct |
18 |
Incorrect |
7 ms |
856 KB |
Output isn't correct |
19 |
Incorrect |
9 ms |
856 KB |
Output isn't correct |
20 |
Runtime error |
6 ms |
856 KB |
Execution failed because the return code was nonzero |
21 |
Incorrect |
36 ms |
1924 KB |
Output isn't correct |
22 |
Incorrect |
27 ms |
2120 KB |
Output isn't correct |
23 |
Incorrect |
37 ms |
1920 KB |
Output isn't correct |
24 |
Incorrect |
27 ms |
1924 KB |
Output isn't correct |
25 |
Incorrect |
23 ms |
1924 KB |
Output isn't correct |
26 |
Incorrect |
27 ms |
1924 KB |
Output isn't correct |
27 |
Incorrect |
26 ms |
1916 KB |
Output isn't correct |
28 |
Incorrect |
27 ms |
2168 KB |
Output isn't correct |
29 |
Incorrect |
26 ms |
1928 KB |
Output isn't correct |
30 |
Runtime error |
23 ms |
2172 KB |
Execution failed because the return code was nonzero |
31 |
Runtime error |
0 ms |
348 KB |
Execution failed because the return code was nonzero |
32 |
Runtime error |
0 ms |
356 KB |
Execution failed because the return code was nonzero |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Runtime error |
0 ms |
344 KB |
Execution failed because the return code was nonzero |
3 |
Runtime error |
1 ms |
352 KB |
Execution failed because the return code was nonzero |
4 |
Runtime error |
0 ms |
344 KB |
Execution failed because the return code was nonzero |
5 |
Runtime error |
0 ms |
352 KB |
Execution failed because the return code was nonzero |
6 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
7 |
Incorrect |
0 ms |
352 KB |
Output isn't correct |
8 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
9 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
10 |
Runtime error |
0 ms |
344 KB |
Execution failed because the return code was nonzero |
11 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
12 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
13 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
14 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
15 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
16 |
Incorrect |
6 ms |
856 KB |
Output isn't correct |
17 |
Incorrect |
7 ms |
856 KB |
Output isn't correct |
18 |
Incorrect |
8 ms |
852 KB |
Output isn't correct |
19 |
Incorrect |
9 ms |
856 KB |
Output isn't correct |
20 |
Runtime error |
6 ms |
856 KB |
Execution failed because the return code was nonzero |
21 |
Incorrect |
26 ms |
2004 KB |
Expected int32, but "2500100001" found |
22 |
Incorrect |
26 ms |
1924 KB |
Expected int32, but "2500100001" found |
23 |
Incorrect |
28 ms |
1924 KB |
Expected int32, but "2500100001" found |
24 |
Incorrect |
28 ms |
2080 KB |
Expected int32, but "2500100001" found |
25 |
Incorrect |
24 ms |
1924 KB |
Expected int32, but "2500100001" found |
26 |
Incorrect |
27 ms |
1924 KB |
Expected int32, but "2500100001" found |
27 |
Incorrect |
26 ms |
1916 KB |
Expected int32, but "2500100001" found |
28 |
Incorrect |
26 ms |
1916 KB |
Expected int32, but "2500100001" found |
29 |
Incorrect |
26 ms |
2124 KB |
Expected int32, but "2500100001" found |
30 |
Runtime error |
21 ms |
1916 KB |
Execution failed because the return code was nonzero |
31 |
Runtime error |
0 ms |
344 KB |
Execution failed because the return code was nonzero |
32 |
Runtime error |
0 ms |
344 KB |
Execution failed because the return code was nonzero |