제출 #1132191

#제출 시각아이디문제언어결과실행 시간메모리
1132191AMel0nLost in the cycle (IOI19_cycle)C++20
0 / 100
0 ms396 KiB
#include "cycle.h" void escape(int n) { int x = n; while(true) { if(jump(x)) {jump(x); x/=2;} else { if (x > 1) x /= 2; else return; } } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...