제출 #1181237

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

#include <bits/stdc++.h>
using namespace std;

void initialize(int n) {}

int arr[1500];

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