답안 #520261

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
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;
  }
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 200 KB The exit was not found.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 200 KB The exit was not found.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 200 KB The exit was not found.
2 Halted 0 ms 0 KB -