# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
825361 | Darren0724 | CONSUL (info1cup19_consul) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());
/*int kth(int p){
cout<<"kth "<<p<<endl;
int ans;cin>>ans;return ans;
}
int cnt(int p){
cout<<"cnt "<<p<<endl;
int ans;cin>>ans;return ans;
}*/
void say_answer(int k){}
void solve(int n){
int times=0;
while(times<25){
int p=rnd()%n+1;
int t=kth(p);
if(cnt(t)>n/3){
say_answer(t);
return;
}
}
say_answer(-1);
}