제출 #1216560

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