Submission #976241

# Submission time Handle Problem Language Result Execution time Memory
976241 2024-05-06T10:46:32 Z HappyCapybara Lost in the cycle (IOI19_cycle) C++17
0 / 100
0 ms 344 KB
#include "cycle.h"
#include<bits/stdc++.h>
using namespace std;

void escape(int n){
    int l=0, r=n;
    int cur = 0;
    while (l < r-1){
        int m = (l+r)/2;
        if (jump((m-cur+n)%n)) l = m;
        else r = m;
    }
    jump((l-cur)%n);
    return;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB The exit was not found.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB The exit was not found.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB The exit was not found.
2 Halted 0 ms 0 KB -