# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1177397 | Agageldi | Permutation (APIO22_perm) | C++20 | 0 ms | 0 KiB |
#include "bits/stdc++.h"
#include "perm.h"
#include "grader.cpp"
using namespace std;
vector<int> construct_permutation(long long k) {
vector <int> v;
for(int i = k - 2; i >= 0; i--) {
v.push_back(i);
}
return v;
}