Submission #520261

# Submission time Handle Problem Language Result Execution time Memory
520261 2022-01-29T04:12:42 Z chinglam Lost in the cycle (IOI19_cycle) C++17
0 / 100
0 ms 200 KB
bool jump(int x);
 
void escape(int n){
  bool indicator = true;
  while(true){
    bool old_indicator = indicator;
    indicator = jump(1);
    if(old_indicator == false && indicator == true) break;
  }
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 200 KB The exit was not found.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 200 KB The exit was not found.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 200 KB The exit was not found.
2 Halted 0 ms 0 KB -