# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
976238 | 2024-05-06T10:45:21 Z | HappyCapybara | Lost in the cycle (IOI19_cycle) | C++17 | 0 ms | 0 KB |
#include<bits/stdc++.h> using namespace std; void escape(int n){ int l=0, r=n; int cur = 0; while (l < r-1){ int m = (l+r)/2; if (jump((m-cur+n)%n)) l = m; else r = m; } jump((l-cur)%n); return; }