| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1246258 | inkvizytor | Game (IOI14_game) | C++20 | 180 ms | 7080 KiB | 
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> a;
void initialize(int n) {
    a.resize(n, 0);
    for (int i = 0; i < n; i++) {
        a[i] = n-i-1;
    }
}
int hasEdge(int u, int v) {
    int x = min(u, v);
    a[x]--;
    if (a[x]==0) {
        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... | ||||
