제출 #1207173

#제출 시각아이디문제언어결과실행 시간메모리
1207173agusst게임 (IOI14_game)C++20
0 / 100
0 ms328 KiB
#include "game.h" #include <bits/stdc++.h> using namespace std; vector<int> nose; void initialize(int n) { nose.assign(n, n - 1); } int hasEdge(int u, int v) { if(nose[u] == 1 or nose[v] == 1){ return 1; } nose[u]--; nose[v]--; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...