#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
map<int, bool> mp;
void solve(int n)
{
mp.clear();
bool ok = false;
for(int i = 1; i <= n; i++)
{
int x = kth(i);
if(mp[x])
continue;
mp[x] = 1;
int Count = cnt(x);
if (Count > n / 3)
{
ok = true;
say_answer(x);
break;
}
}
if (!ok)
say_answer(-1);
/// insert your code
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
18 ms |
200 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
42 ms |
200 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
10 ms |
200 KB |
Too many queries |
2 |
Halted |
0 ms |
0 KB |
- |