Submission #499133

#TimeUsernameProblemLanguageResultExecution timeMemory
499133LouayFarahLost in the cycle (IOI19_cycle)C++14
0 / 100
1 ms200 KiB
#include "bits/stdc++.h"
#include "cycle.h"
 
using namespace std;
 
#define endl "\n"
#define ll long long int
#define pb push_back
#define mp make_pair
#define fi first
#define se second
 
const long long MOD = 1e9+7;
const long long INF = 1e18;
 
int nx[4] = {0, 0, -1, 1};
int ny[4] = {1, -1, 0, 0};
 
 
bool jumb(int x);
 
void escape(int n)
{
    ll curr = n/2;
    while(curr>0)
    {
        bool ans = jump(curr);
        if(ans)
        {
            curr/=2;
        }
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...