# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1240504 | Jer | Game (IOI14_game) | C++20 | 176 ms | 7060 KiB |
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1505;
int used[MAXN];
void initialize(int N)
{
}
int hasEdge(int u, int v)
{
used[max(u, v)]++;
if (used[max(u, v)] == max(u, v))
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... |