# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
520258 | 2022-01-29T04:04:03 Z | chinglam | Lost in the cycle (IOI19_cycle) | C++14 | 0 ms | 0 KB |
void escape(int n){ bool indicator = true; while(true){ if(indicator == false && ((indicator = jump(1)) == true)) break; } }