Submission #312469

# Submission time Handle Problem Language Result Execution time Memory
312469 2020-10-13T13:23:54 Z mohamedsobhi777 CONSUL (info1cup19_consul) C++14
Compilation error
0 ms 0 KB
#include "grader.h"

void solve(int n)
{
    /// insert your code
    /// for example
        srand(time(0)) ; 
        for(int i = 0 ;i < 19 ; ++ i){
                int x = rand() % n + 1;
                int r = kth(x) ; 
                if(cnt(r) > n / 3){
                        say_answer(r) ; 
                        return ; 
                }
        }
        say_answer(-1) ;
}  

Compilation message

consul.cpp: In function 'void solve(int)':
consul.cpp:7:15: error: 'time' was not declared in this scope
    7 |         srand(time(0)) ;
      |               ^~~~
consul.cpp:7:9: error: 'srand' was not declared in this scope
    7 |         srand(time(0)) ;
      |         ^~~~~
consul.cpp:9:25: error: 'rand' was not declared in this scope
    9 |                 int x = rand() % n + 1;
      |                         ^~~~