# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1258577 | attky | Game (IOI14_game) | C++20 | 179 ms | 7044 KiB |
#include <bits/stdc++.h>
#include "game.h"
using namespace std;
int vu[1510];
void initialize(int n) {
}
int hasEdge(int u, int v) {
if(u < v) {
swap(u, v);
}
vu[u]++;
if(vu[u] == u) {
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... |