답안 #360232

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
360232 2021-01-27T22:46:28 Z ogibogi2004 CONSUL (info1cup19_consul) C++14
0 / 100
1 ms 364 KB
#include "grader.h"
#include<bits/stdc++.h>
using namespace std;
void solve(int n)
{
    /// insert your code
    /// for example
    set<int>checked;
    srand(23543);
    int cnt1=0;
    for(;cnt1+2<=60;)
    {
		int i=rand()%n+1;
		if(checked.find(i)!=checked.end())continue;
		checked.insert(i);
		cnt1+=2;
		int val=kth(i);
		if(cnt(val)*3>n)
		{
			say_answer(val);
		}
	}
	say_answer(-1);
    if(cnt(kth(1)) > n / 3) say_answer(kth(1));
        else say_answer(-1);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Multiple answers provided for the same testcase!
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Multiple answers provided for the same testcase!
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Multiple answers provided for the same testcase!
2 Halted 0 ms 0 KB -