# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
369477 | 2021-02-21T18:18:46 Z | sad | CONSUL (info1cup19_consul) | C++14 | 0 ms | 0 KB |
#include "grader.h" #include "bits/stdc++.h" #define fi first #define se second #define pb push_back #define ll long long using namespace std; map<int,int>m; void solve(int n) { for(int i=1;i<=min(25,n);i++) { int w=rand(); w%=n;w++; int x=kth(i); if(m[x])continue; int y=cnt(x); if(y>n/3) { say_answer(x);return; } vis[x]=1; } say_answer(-1); }