| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1327483 | michael12 | 게임 (IOI14_game) | C++20 | 1 ms | 332 KiB |
#include "game.h"
#include<bits/stdc++.h>
using namespace std;
vector<int> a;
void initialize(int n){
for(int i = 0; i < n; i++){
a[i] = 0;
}
}
int hasEdge(int u, int v){
a[max(u, v)] += 1;
if(a[max(u, v)] == max(u, 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... | ||||
