Submission #391317

#TimeUsernameProblemLanguageResultExecution timeMemory
391317Urvuk3CONSUL (info1cup19_consul)C++17
Compilation error
0 ms0 KiB
#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 rand=rand()%n+1;
        int za_koga_je_glasao_rand=kth(rand);
        if(cnt(za_koga_je_glasao_rand)>n/3){
            say_answer(za_koga_je_glasao_rand);
            return;
        }
    }
    say_answer(-1);
}

Compilation message (stderr)

consul.cpp: In function 'void solve(int)':
consul.cpp:9:23: error: 'rand' cannot be used as a function
    9 |         int rand=rand()%n+1;
      |                       ^