Submission #720427

#TimeUsernameProblemLanguageResultExecution timeMemory
720427yellowtoadCONSUL (info1cup19_consul)C++17
85 / 100
32 ms220 KiB
#include <bits/stdc++.h> #include "grader.h" void solve(int n) { int tmp, cnnt = 0; srand(time(NULL)); while ((cnnt < 30) || ((n <= 50) && (cnnt < 25))) { tmp = kth(rand()%n+1); if (cnt(tmp) > n/3) { say_answer(tmp); return; } cnnt++; } say_answer(-1); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...