제출 #1220534

#제출 시각아이디문제언어결과실행 시간메모리
1220534thangdz2k7게임 (IOI14_game)C++20
100 / 100
180 ms7084 KiB
#include "game.h"

#include <bits/stdc++.h>

using namespace std; 

int c[1501];

void initialize(int n){

}

int hasEdge(int u, int v){
	if (u > v) swap(u, v);
	c[v] ++;
	return c[v] == v;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...