Submission #391319

# Submission time Handle Problem Language Result Execution time Memory
391319 2021-04-18T14:31:33 Z Urvuk3 CONSUL (info1cup19_consul) C++17
19 / 100
333 ms 200 KB
#include "grader.h"
#include <bits/stdc++.h>

using namespace std;

void solve(int n){
    srand(34234);
    for(int i=1;i<=n/2;i++){
        int r=rand()%n+1;
        int za_koga_je_glasao_r=kth(r);
        if(cnt(za_koga_je_glasao_r)>n/3){
            say_answer(za_koga_je_glasao_r);
            return;
        }
    }
    say_answer(-1);
}
# Verdict Execution time Memory Grader output
1 Correct 15 ms 200 KB Output is correct
# Verdict Execution time Memory Grader output
1 Partially correct 36 ms 200 KB Output is partially correct
2 Correct 11 ms 200 KB Output is correct
# Verdict Execution time Memory Grader output
1 Partially correct 333 ms 200 KB Output is partially correct
2 Halted 0 ms 0 KB -