| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1312677 | warrenn | 게임 (IOI14_game) | C++20 | 0 ms | 332 KiB |
#include "game.h"
#include<bits/stdc++.h>
using namespace std;
int cnt[1502];
int N;
void initialize(int n) {
N=n;
}
int hasEdge(int u, int v) {
cnt[u]++,cnt[v]++;
if(cnt[u]==N-1 || cnt[v]==N-1)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... | ||||
