제출 #984099

#제출 시각아이디문제언어결과실행 시간메모리
984099IzazPermutation (APIO22_perm)C++17
10 / 100
500 ms51196 KiB
#include <bits/stdc++.h>
using namespace std;

#define f first
#define s second
#define mn(a,b) min(a,b)
#define mx(a,b) max(a,b)
#define ll long long
vector<int> construct_permutation(long long  k)
{
	vector<int>A;
	for(int i = k-2;i>=0;i--){
		A.push_back(i);
	}
	return A;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...