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