#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
map<int, bool> mp;
void solve(int n)
{
mp.clear();
srand(0);
int q = 59;
int i = 0;
while(q-- > 0)
{
/// int i = rand() % n + 1;
i++;
if (i > n)
break;
int x = kth(i);
if(mp[x])
continue;
q--;
mp[x] = 1;
int Count = cnt(x);
if (Count > n / 3)
{
say_answer(x);
return;
}
}
say_answer(-1);
/// insert your code
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
15 ms |
200 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
26 ms |
200 KB |
Output is correct |
2 |
Incorrect |
9 ms |
200 KB |
Wrong answer |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
15 ms |
200 KB |
Output is correct |
2 |
Correct |
23 ms |
200 KB |
Output is correct |
3 |
Incorrect |
1 ms |
200 KB |
Wrong answer |
4 |
Halted |
0 ms |
0 KB |
- |