#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
void solve(int n)
{
map<int,bool> sel;
for(int i=1; i<=50; i++)
{
int x = 0;
while(!x || sel[x])
{
x = rand()%n + 1;
}
int val = kth(x);
int nr = cnt(val);
sel[x]=true;
if(nr>n/3)
{
say_answer(x);
}
}
say_answer(-1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
364 KB |
Wrong answer |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
364 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |