# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1177397 | Agageldi | 순열 (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;
}