# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
312469 | 2020-10-13T13:23:54 Z | mohamedsobhi777 | CONSUL (info1cup19_consul) | C++14 | 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) ; }