답안 #523460

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
523460 2022-02-07T17:04:38 Z Farhan_HY CONSUL (info1cup19_consul) C++14
15 / 100
15 ms 280 KB
#include<bits/stdc++.h>
#include "grader.h"

using namespace std;

map<int, bool> mp;

void solve(int n)
{
    mp.clear();
    srand(0);
    int q = 30;
    int i = 0;
    while(q--)
    {
        i++;
        if (i > n)
            break;
        int x = kth(i);
        if(mp[x])
            continue;
        mp[x] = 1;
        int Count = cnt(x);
        if (Count > n / 3)
        {
            say_answer(x);
            return;
        }
    }
    say_answer(-1);
    /// insert your code
}
# 결과 실행 시간 메모리 Grader output
1 Correct 12 ms 200 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 15 ms 280 KB Output is correct
2 Incorrect 1 ms 276 KB Wrong answer
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 15 ms 280 KB Output is correct
2 Correct 13 ms 200 KB Output is correct
3 Incorrect 1 ms 200 KB Wrong answer
4 Halted 0 ms 0 KB -