#include "grader.h"
#include <map>
using namespace std;
map<int, int>mp;
void solve(int n)
{
int i;
int k = 60;
if (n <= 50)
k = 50;
for (i = 1; i <= k;)
{
int k = kth(i);
i++;
if (mp[k] == 0)
{
mp[k] = cnt(k);
i++;
}
if (mp[k] > n / 3)
{
say_answer(k);
return;
}
}
say_answer(-1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
208 KB |
Wrong query format |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
22 ms |
288 KB |
Output is partially correct |
2 |
Incorrect |
5 ms |
208 KB |
Wrong answer |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
208 KB |
Output is correct |
2 |
Correct |
25 ms |
276 KB |
Output is correct |
3 |
Incorrect |
1 ms |
208 KB |
Wrong answer |
4 |
Halted |
0 ms |
0 KB |
- |