답안 #545415

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
545415 2022-04-04T13:19:02 Z AJ00 게임 (IOI14_game) C++14
0 / 100
1 ms 212 KB
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
int n;
vector<int> cnt(1500);
void initialize(int N){
    n = N;
    for (int i = 0; i < n; i++){
        cnt[i] = 0;
    }
}
int hasEdge(int u, int v){
    cnt[u]++;
    cnt[v]++;
    if (cnt[u] == n || cnt[v] == n){
        return 1;
    }
    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 212 KB Output isn't correct
2 Halted 0 ms 0 KB -