This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include <grader.h>
using namespace std;
int kth(int x);
int cnt(int x);
void say_answer(int x);
void solve(int n)
{
srand(time(0));
int poz;
for(int i = 1; i<=25; i++)
{
poz = rand() % (n+1);
poz = kth(poz);
if(cnt(poz) > n/3)
{
say_answer(poz);
return ;
}
}
say_answer(-1);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |