제출 #125959

#제출 시각아이디문제언어결과실행 시간메모리
125959kingfran1907게임 (IOI14_game)C++14
100 / 100
376 ms16632 KiB
#include "game.h" #include <bits/stdc++.h> const int maxn = 1510; int a[maxn]; void initialize(int n) { } int hasEdge(int u, int v) { if (u > v) std::swap(u, v); a[v]++; if (a[v] == v) return 1; else return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...