| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1339909 | nagorn_ph | Game (IOI14_game) | C++20 | 280 ms | 6984 KiB |
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
map <int, int> mp;
void initialize(int n) {
return;
}
int hasEdge(int u, int v) {
if (u > v) swap(u, v);
if (mp[v] == v - 1) return 1;
else return mp[v]++, 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... | ||||
