#include<bits/stdc++.h>
#include"cycle.h"
using namespace std;
void escape(int N){
int l=0,r=N,p=0;
while(r-l != 1 && (l != N-1 || r != 0)){
int L = l;
int R = r;
if(L > R) R += N;
int M = (L+R)/2;
int d = N-N/2-M;
if(d < 0) d += 5*N;
d %= N;
p += d;
p %= N;
if(jump(d)){
l = M;
}
else{
r = M;
}
}
int now = l+p;
now %= N;
jump(N-now);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
208 KB |
Output is correct |
2 |
Correct |
1 ms |
208 KB |
Output is correct |
3 |
Incorrect |
1 ms |
208 KB |
Invalid argument. |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
208 KB |
Invalid argument. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
208 KB |
Output is correct |
2 |
Correct |
1 ms |
208 KB |
Output is correct |
3 |
Incorrect |
1 ms |
208 KB |
Invalid argument. |
4 |
Halted |
0 ms |
0 KB |
- |