제출 #1361608

#제출 시각아이디문제언어결과실행 시간메모리
1361608marizaMagic Show (APIO24_show)C++20
5 / 100
3 ms1092 KiB
#include "Alice.h"
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;

vector<pair<int,int>> Alice(){
    ll x=setN(5000);

    vector<pair<int,int>> ans;
    for(ll i=1; i<=5000; i++){
        if(i!=x) ans.push_back({i,x});
    }
    return ans;
}
#include "Bob.h"
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;

long long Bob(vector<pair<int,int>> t){
    if(t[0].first==t[1].first || t[0].first==t[1].second) return t[0].first;
    else return t[0].second;
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…