# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1093927 | 2024-09-28T05:48:02 Z | Trisanu_Das | 마술쇼 (APIO24_show) | C++17 | 0 ms | 0 KB |
#include "Alice.h" using namespace std; vector<pair<int, int>> Alice() { long long x = setN(5000); vector<pair<int,int>> tree; for (int i = 1; i <= 5000; i++) { if (i != x) { tree.push_back({i, x}); } } return tree; }