제출 #645352

#제출 시각아이디문제언어결과실행 시간메모리
645352notmeCONSUL (info1cup19_consul)C++14
0 / 100
68 ms208 KiB
#include<bits/stdc++.h>
#define endl '\n'
#include "grader.h"
using namespace std;


void solve(int N)
{
    for (int i = 1; i <= N; ++ i)
    {
        int num = kth(i);
        int times = cnt(num);
        if(times > N/3)
        {
            say_answer(num);
            return;
        }
    }
    say_answer(-1);
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…