| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1291594 | hynmj | 게임 (IOI14_game) | C++20 | 163 ms | 13516 KiB |
#include "game.h"
#include <algorithm>
const int N = 3000;
void initialize(int n)
{
}
int c[N];
int hasEdge(int u, int v)
{
if (u < v)
std::swap(u, v);
return ++c[u] == u;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
