#include "grader.h"
#include<bits/stdc++.h>
using namespace std;
void solve(int n) {
srand(time(NULL));
int limit = 0;
if(n <= 50)limit = 25;
else limit=30;
for(int k = 0;k<limit;k++) {
int i = rand()%n + 1;
long long num = kth(i);
if(cnt(num) > (n+2)/ 3){
say_answer(num);
return;
}
}
say_answer(-1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
200 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |