# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
733304 | Alex1298 | CONSUL (info1cup19_consul) | C++14 | 1 ms | 208 KiB |
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)
{
auto seed = chrono::high_resolution_clock::now().time_since_epoch().count();
mt19937 mt_rand(seed);
auto yay = bind(uniform_int_distribution<int> (1, n), mt_rand);
int poz;
for(int i = 1; i<=25; i++)
{
poz = rand() % (n+1);
if(cnt(poz) > n/3)
{
say_answer(poz);
return ;
}
}
say_answer(-1);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |