| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1343223 | nathlol2 | Game (IOI14_game) | C++20 | 185 ms | 7064 KiB |
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
int N, deg[1505];
void initialize(int n){
N = n;
}
int hasEdge(int u, int v){
if(u > v) swap(u, v);
if(++deg[u] == N - u - 1) return 1;
else 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... | ||||
