답안 #645661

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
645661 2022-09-27T15:33:24 Z notme CONSUL (info1cup19_consul) C++14
0 / 100
2 ms 208 KB
#include <bits/stdc++.h>
#include "grader.h"

using namespace std;

int kth(int k);
void say_answer(int k);
int cnt(int k);

void solve(int n)
{
    int i, pos;
    auto seed = chrono::high_resolution_clock::now().time_since_epoch().count();
    mt19937 mt_rand(seed);
    auto yay = bind(uniform_int_distribution<int> (1, n), mt_rand);

    for(i=1; i<=25; ++i)
    {
        pos = yay();
        pos = kth(pos);
        if(cnt(pos) > n/3)
        {
            say_answer(-1);
            return;
        }
    }
    say_answer(-1);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB Wrong answer
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 208 KB Wrong answer
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 208 KB Wrong answer
2 Halted 0 ms 0 KB -