답안 #486297

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
486297 2021-11-11T08:09:34 Z NintsiChkhaidze CONSUL (info1cup19_consul) C++14
0 / 100
11 ms 268 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){
    set <int> st; st.clear();
    for (int i = 1; i <= n; i++){
        int val = kth(i);
        if (st.find(val)!=st.end())
            continue;
        st.insert(val);
        if (cnt(val) > n/3)
            say_answer(val);
    }
    
    say_answer(-1);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 200 KB Multiple answers provided for the same testcase!
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 200 KB Multiple answers provided for the same testcase!
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 11 ms 268 KB Too many queries
2 Halted 0 ms 0 KB -