# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1189750 | Tsagana | 마술쇼 (APIO24_show) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#include "Alice.h"
using namespace std;
std::vector<std::pair<int,int>> Alice() {
vector<pair<int,int>> ans;
int x = setN(5000);
for (int i = 1; i < 5000; i++){
if (i == x) continue ;
ans.push_back({x, i});
}
return ans;
}
#include <bits/stdc++.h>
#include "Bob.h"
using namespace std;
long long Bob(std::vector<std::pair<int,int>> V){
return V[0].F;
}