제출 #576270

#제출 시각아이디문제언어결과실행 시간메모리
576270four_specks게임 (IOI14_game)C++17
100 / 100
262 ms16300 KiB
#include "game.h" #include <bits/stdc++.h> using namespace std; inline namespace tc { } // namespace tc namespace { vector<int> rem; } void initialize(int n) { rem = vector<int>(n); iota(rem.begin(), rem.end(), 0); } int hasEdge(int u, int v) { return !--rem[max(u, v)]; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...