# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1078268 | 2024-08-27T14:42:44 Z | Marco_Escandon | Magic Show (APIO24_show) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> using namespace std; typedef int ll; std::vector<std::pair<int,int>> Alice(){ long long x = setN(5000); ll n=5000; vector<pair<ll,ll>> temp; for(int i=1; i<n; i++) { temp.push_back({i,n}); } return temp; }