제출 #733306

#제출 시각아이디문제언어결과실행 시간메모리
733306Alex1298CONSUL (info1cup19_consul)C++14
80 / 100
28 ms344 KiB
#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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...