Submission #391317

# Submission time Handle Problem Language Result Execution time Memory
391317 2021-04-18T14:30:16 Z Urvuk3 CONSUL (info1cup19_consul) C++17
Compilation error
0 ms 0 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 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

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;
      |                       ^