# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1197332 | kadir | Permutation (APIO22_perm) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
#include "perm.h"
#define ull unsigned long long
#define ll long long
#define ff first
#define ss second
#define pb push_back
using namespace std;
const ll mod=1e9+7;
const ll inf=1e18;
const ll mxn=1e6+5;
const ll MAX=1e9+6;
const ll logk=18;
vector<ll> construct_permutation(ll k) {
vector<ll> v;
for(ll i=k-1; i>=0; i--) {
v.pb(i);
}
return v;
}
//int main() {
// ios::sync_with_stdio(false);
// cin.tie(0);
// cout.tie(0);
//}