| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1290460 | muhammad-mutahir | 게임 (IOI14_game) | C++20 | 278 ms | 13296 KiB |
#include <bits/stdc++.h>
using namespace std;
#include "game.h"
map<int,int>cnt;
int n;
void initialize(int ki){
n = ki;
}
int hasEdge(int u,int v){
if(u>v)swap(u,v);
// cnt[u]++;
cnt[v]++;
// int path = findcnt(u,v);
if(cnt[v] == v ){
return 1;
}
else{
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... | ||||
