#include <bits/stdc++.h>
#include "grader.h"
//#include "grader.cpp"
using namespace std;
int a[100005];
void solve(int n){
for(int i = 1 ; i <= n ; i ++){
int x = kth(i);
a[i] = x;
}
sort(a,a + n);
int cnt = 1;
for(int i = 2 ; i <= n ; i ++){
if(a[i] != a[i - 1]){
if(cnt > n / 3){
say_answer(a[i - 1]);
return;
}
cnt = 0;
}
cnt ++;
}
if(cnt > n / 3){
say_answer(a[n]);
return;
}
say_answer(-1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
364 KB |
Wrong answer |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
364 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
10 ms |
384 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |