Submission #520260

#TimeUsernameProblemLanguageResultExecution timeMemory
520260chinglamLost in the cycle (IOI19_cycle)C++17
0 / 100
3059 ms200 KiB
bool jump(int x);
 
void escape(int n){
  bool indicator = jump(1);
  while(true){
    if(indicator == false && ((indicator = jump(1)) == true)) break;
  }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...