Submission #312469

#TimeUsernameProblemLanguageResultExecution timeMemory
312469mohamedsobhi777CONSUL (info1cup19_consul)C++14
Compilation error
0 ms0 KiB
#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 (stderr)

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