| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1369286 | Almonther | Game (IOI14_game) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
#include "game.h"
using namespace std;
int cnt[1505]={};
void initialize(int n);
int hasEdge(int u, int v){
cnt[max(u,v)]++;
return cnt[max(u,v)]==max(u,v);
}