#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;
}
m[x]=1;
}
say_answer(-1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
640 KB |
Wrong answer |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
15 ms |
492 KB |
Output is correct |
2 |
Incorrect |
1 ms |
364 KB |
Wrong answer |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
376 KB |
Output is correct |
2 |
Correct |
23 ms |
364 KB |
Output is correct |
3 |
Incorrect |
1 ms |
364 KB |
Wrong answer |
4 |
Halted |
0 ms |
0 KB |
- |