Submission #818459

#TimeUsernameProblemLanguageResultExecution timeMemory
818459pavementCONSUL (info1cup19_consul)C++17
0 / 100
9 ms208 KiB
#include "grader.h"
#include <bits/stdc++.h>
using namespace std;

mt19937 rng(12345);

void solve(int n) {
	while (1) {
		int k = rng() % n + 1;
		if (cnt(kth(k)) > n / 3) {
			say_answer(kth(k));
			break;
		}
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...