| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1341493 | lazy | Game (IOI14_game) | C++20 | 1 ms | 344 KiB |
#include <bits/stdc++.h>
using namespace std;
int c[100005];
void initialize(int n) {
for (int i = 1; i <= n; i++) {
c[i] = i;
}
}
int hasEdge(int u, int v) {
if (c[u + 1] == 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... | ||||
