| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1312681 | warrenn | Game (IOI14_game) | C++20 | 162 ms | 7072 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) {
if(u>v)swap(u,v);
cnt[u]++;
if(cnt[u]==N-u-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... | ||||
