제출 #249699

#제출 시각아이디문제언어결과실행 시간메모리
249699muhammad_hokimiyon게임 (IOI14_game)C++14
0 / 100
0 ms384 KiB
#include "game.h" #include <bits/stdc++.h> using namespace std; const int N = 2000; int n1; int a[N]; void initialize(int n) { n1 = n; } int hasEdge(int u, int v) { a[u] += 1 , a[v] += 1; if( a[u] == n1 - 1 || a[v] == n1 - 1 ){ return 1; } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...