# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1200429 | boycl08 | Game (IOI14_game) | C++20 | 178 ms | 7092 KiB |
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 5090;
int deg[N];
void initialize(int n) {
}
int hasEdge(int u, int v) {
if (u > v) swap(u, v);
deg[v]++;
return (deg[v] == v);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |