#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
void solve(int n)
{
map<int, int> mp;
for(int i = 1;i <= n; i++){
int x = kth(i);
mp[x]++;
if(mp[x] > n / 3){
say_answer(x);
return;
}
}
say_answer(-1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
36 ms |
200 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
70 ms |
200 KB |
Output is partially correct |
2 |
Partially correct |
64 ms |
200 KB |
Output is partially correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
703 ms |
200 KB |
Output is partially correct |
2 |
Halted |
0 ms |
0 KB |
- |