#include <bits/stdc++.h>
#include "grader.h"
//#include "grader.cpp"
using namespace std;
void solve(int n){
int a[1005];
for(int i = 0 ; i < n ; i ++){
int x = kth(i + 1);
a[i] = x;
}
sort(a,a + n);
int cnt = 1;
for(int i = 1 ; i < n ; i ++){
if(a[i] != a[i - 1]){
if(cnt > n / 3){
say_answer(a[i - 1]);
return;
}
cnt = 0;
}
cnt ++;
//cout << a[i] << " " << cnt << endl;
}
if(cnt > n / 3){
say_answer(a[n]);
return;
}
say_answer(-1);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
13 ms |
364 KB |
Wrong answer |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
25 ms |
364 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Partially correct |
813 ms |
364 KB |
Output is partially correct |
2 |
Halted |
0 ms |
0 KB |
- |