제출 #172538

#제출 시각아이디문제언어결과실행 시간메모리
172538Nightlight게임 (IOI14_game)C++14
100 / 100
374 ms16396 KiB
#include "game.h"
#include <bits/stdc++.h>

int memo[1505];

void initialize(int n) {

}

int hasEdge(int u, int v) {
  int t = fmax(u, v);
  memo[t]++;
  return memo[t] == t;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...