Submission #373971

# Submission time Handle Problem Language Result Execution time Memory
373971 2021-03-06T10:13:31 Z ritul_kr_singh Lost in the cycle (IOI19_cycle) C++17
0 / 100
1 ms 364 KB
//#pragma GCC optimize("Ofast,unroll-loops")
#include <bits/stdc++.h>
#include "cycle.h"
using namespace std;
#define sp << " " <<
#define nl << "\n"

void escape(int n){
    bool inTrue = jump(n/2);
    for(int j=n/2; j; j/=2){
        bool ok;
        if(inTrue) ok = jump(j);
        else ok = jump(n-j);
        if(ok != inTrue){
            inTrue = ok;
            break;
        }
    }
    if(!inTrue) jump(n-1);
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 364 KB The exit was not found.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Correct 1 ms 364 KB Output is correct
3 Incorrect 1 ms 364 KB The exit was not found.
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 364 KB The exit was not found.
2 Halted 0 ms 0 KB -