답안 #719416

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
719416 2023-04-05T21:47:46 Z Juan 게임 (IOI14_game) C++14
0 / 100
1 ms 308 KB
#include<bits/stdc++.h>
using namespace std;
#include "game.h"
const int maxn = 1505;

int deg[maxn], N;

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

int hasEdge(int u, int v) {
    deg[u]++, deg[v]++;
    if(deg[u]==N || deg[v]==N) return 1;
    else return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 308 KB Output isn't correct
2 Halted 0 ms 0 KB -