Submission #523409

# Submission time Handle Problem Language Result Execution time Memory
523409 2022-02-07T15:30:46 Z Farhan_HY CONSUL (info1cup19_consul) C++14
0 / 100
42 ms 200 KB
#include<bits/stdc++.h>
#include "grader.h"

using namespace std;

map<int, bool> mp;

void solve(int n)
{
    mp.clear();
    bool ok = false;
    for(int i = 1; i <= n; i++)
    {
        int x = kth(i);
        if(mp[x])
            continue;
        mp[x] = 1;
        int Count = cnt(x);
        if (Count > n / 3)
        {
            ok = true;
            say_answer(x);
            break;
        }
    }
    if (!ok)
        say_answer(-1);
    /// insert your code
}
# Verdict Execution time Memory Grader output
1 Incorrect 18 ms 200 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 42 ms 200 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 10 ms 200 KB Too many queries
2 Halted 0 ms 0 KB -