답안 #889096

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
889096 2023-12-18T20:31:31 Z aguss 게임 (IOI14_game) C++14
0 / 100
1 ms 348 KB
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
int k;
vector<int> arr;
void initialize(int n) {
    k = n;
    fill(arr.begin(), arr.end(), n - 1);
}

int hasEdge(int u, int v) {
    if(!(arr[u]--) or !(arr[v]--))
        return 1;
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -