| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1291586 | hynmj | Game (IOI14_game) | C++20 | 0 ms | 0 KiB |
#include "game.h"
const int N = 3000;
void initialize(int n)
{
}
int c[N];
int hasEdge(int u, int v)
{
if (u < v)
swap(u, v);
return ++c[u] == u;
}
