제출 #287026

#제출 시각아이디문제언어결과실행 시간메모리
287026Atill83게임 (IOI14_game)C++14
0 / 100
1 ms384 KiB
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
int cnt[1501];
int N;

void initialize(int n) {
    N = n;
}

int hasEdge(int u, int v) {
    cnt[u]++;
    cnt[v]++;
    if(cnt[u] == N || cnt[v] == N){
        return 1;
    }
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...