# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1146937 | Seb | 게임 (IOI14_game) | C++17 | 0 ms | 328 KiB |
#include "game.h"
#include <bits/stdc++.h>
int deg[1505];
void initialize(int n) {
for (int i = 0; i < n; i++) deg[i] = n - 1;
}
int hasEdge(int u, int v) {
deg[u]--; deg[v]--;
if (!deg[u] || !deg[v]) return 1;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |