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