| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1267509 | cmiuc | Game (IOI14_game) | C++20 | 0 ms | 328 KiB |
#include <iostream>
#include "game.h"
using namespace std;
int Nn, cnt[1505];
void initialize(int N){
Nn = N;
}
int hasEdge(int u, int v){
cnt[u]++;
cnt[v]++;
return (cnt[u] == Nn - 1 or cnt[v] == Nn - 1);
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
