제출 #879234

#제출 시각아이디문제언어결과실행 시간메모리
879234Mr_Husanboy게임 (IOI14_game)C++17
0 / 100
1 ms444 KiB
#include "game.h" #include<bits/stdc++.h> template<typename T> int len(T &a){ return a.size(); } using namespace std; vector<int> cnt; void initialize(int n) { cnt.resize(n, n - 1); } int hasEdge(int u, int v) { cnt[u] --; cnt[v] --; return (cnt[u] == 0 || cnt[v] == 0); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...