Submission #1025100

#TimeUsernameProblemLanguageResultExecution timeMemory
1025100HD1Lost in the cycle (IOI19_cycle)C++14
11 / 100
1 ms344 KiB
#include "cycle.h" #include<bits/stdc++.h> #define fastio ios_base::sync_with_stdio(0); cin.tie(0); using namespace std; typedef long long ll; typedef pair<ll,ll> ii; const ll MAX=1e6; const ll INF=1e17; const ll mod=1e9+7; int ant; void escape(int n) { ant=n; bool aux=jump(1); for(int i=1; i<=30; i++){ bool ns=jump(1); if(aux && !ns){ jump(n-1); break; } aux=ns; } return; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...