| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1301883 | PakinDioxide | Game (IOI14_game) | C++20 | 2 ms | 340 KiB |
#include "game.h"
#include <bits/stdc++.h>
#define ll long long
using namespace std;
int n;
int cnt[1505];
void initialize(int N) {
n = N;
}
int hasEdge(int u, int v) {
return (++cnt[u] == n-1 || ++cnt[v] == n-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... | ||||
