답안 #364075

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
364075 2021-02-08T08:11:40 Z yasseenkamel CONSUL (info1cup19_consul) C++14
0 / 100
37 ms 2284 KB
#include "grader.h"
//#include "grader.cpp"

bool vis[1000000005];

void solve(int n){
    for(int i = 1 ; i <= n ; i ++){
        int x = kth(i);
        if(!vis[x]){
            int y = cnt(x);
            if(y > n / 3){
                say_answer(x);
                return;
                break;
            }
        }
    }
    say_answer(-1);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 25 ms 1388 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 37 ms 2284 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 9 ms 492 KB Too many queries
2 Halted 0 ms 0 KB -