제출 #622917

#제출 시각아이디문제언어결과실행 시간메모리
622917Deepesson게임 (IOI14_game)C++17
0 / 100
1 ms212 KiB
#include <bits/stdc++.h>
#include "game.h"
 
void initialize(int n) { }
 
int arr[15000];
 
int hasEdge(int u, int v) {
	if(u>v)std::swap(u,v);
  	++arr[v];
  	if(arr[v]==v-1)return true;
  return false;
}
 
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...