# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
490104 | 2021-11-25T17:25:12 Z | alexdumitru | CONSUL (info1cup19_consul) | C++14 | 0 ms | 0 KB |
#include <bits/stdc++.h> #include "grader.h" using namespace std; void solve(int n) { for(int i=1;i<=25;i++) { int person=rand()%n+1; int vote=kth(person); int ap=cnt(vote); if(ap>n/3) { say_answer(vote); return; } } say_answer(-1); } int main() { srand(time(NULL)); return 0; }