Submission #1132193

#TimeUsernameProblemLanguageResultExecution timeMemory
1132193AMel0nLost in the cycle (IOI19_cycle)C++20
0 / 100
0 ms396 KiB
#include "cycle.h"

void escape(int n) {
	int x = n/2;
	while(true) {
		if(jump(x)) {jump(x);}
		else {
			if (x > 0) x /= 2;
			else return;
		}
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...