제출 #489138

#제출 시각아이디문제언어결과실행 시간메모리
489138SlavicG게임 (IOI14_game)C++17
0 / 100
1 ms332 KiB
#include "bits/stdc++.h"
using namespace std;
 
#define ll long long
 
#define       forn(i,n)              for(int i=0;i<n;i++)
#define          all(v)              v.begin(), v.end()
#define         rall(v)              v.rbegin(),v.rend()
 
#define            pb                push_back
#define          sz(a)               (int)a.size()

void initialize(int n){}

int hasEdge(int u, int v){
    if(u > v)swap(u, v);

    if(u + 1 == v)return 1;
    else return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...