답안 #315120

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
315120 2020-10-22T02:52:08 Z yjojdkgk5bp CONSUL (info1cup19_consul) C++14
0 / 100
10 ms 256 KB
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
void solve(int n)
{
	srand(time(0));
	int v;
	map<int,int> can;
	int vis[2001]={0};
	for(int i=1; i<=n; i++)
	{
		while(1)
		{
			int k=(rand()%n)+1;
			if(vis[k]) continue;
			v=kth(k);
			if(cnt(v)>n/3) say_answer(v);
			vis[k]=1; break;
		}
	}
	say_answer(-1);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB Multiple answers provided for the same testcase!
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB Multiple answers provided for the same testcase!
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 10 ms 256 KB Too many queries
2 Halted 0 ms 0 KB -