#include "grader.h"
#include <map>
#define ll long long
using namespace std;
map<ll,int>m;
void solve(int n){
for(int i=1;i<=n;i++){
int a=kth(i);
m[a]++;
}
for(auto it:m){
if(it.second>(n/3)){
say_answer(it.first);
return;
}
}
say_answer(-1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
208 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
292 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
23 ms |
292 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |