#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
map < int , int > mapche;
int kth(int k);
void say_answer(int k);
int cnt(int k);
void solve(int n)
{
mapche.clear();
bool ok = false;
int total = 0;
for (int i = 1; i <= n && total < n && !ok; ++ i)
{
int num = kth(i);
if(!mapche[num])
{
int times = cnt(num);
mapche[num] = 1;
total += times;
if(times > n/3)
{
say_answer(num);
ok = 1;
}
}
}
if(!ok)say_answer(-1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
13 ms |
208 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
40 ms |
208 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
11 ms |
300 KB |
Too many queries |
2 |
Halted |
0 ms |
0 KB |
- |