제출 #622918

#제출 시각아이디문제언어결과실행 시간메모리
622918Deepesson게임 (IOI14_game)C++17
100 / 100
331 ms8732 KiB
#include <bits/stdc++.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)return true;
    return false;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...