제출 #1176590

#제출 시각아이디문제언어결과실행 시간메모리
1176590adkjtLost in the cycle (IOI19_cycle)C++20
0 / 100
0 ms408 KiB
#include "cycle.h" #include<bits/stdc++.h> using namespace std; void escape(int n) { int r=n/2; bool x=jump(r);//cout<<r<<' '<<x<<'\n'; r/=2; while(r>0) {//cout<<r<<' '<<x<<'\n'; if(x) x=jump(r); else x=jump(n-r); r/=2; } if(!x) jump(n-1); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...