제출 #1134147

#제출 시각아이디문제언어결과실행 시간메모리
1134147sohamsen15순열 (APIO22_perm)C++20
10 / 100
313 ms49244 KiB
#include "perm.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

vector<int> construct_permutation(ll k) {
	vector<int> a(k - 1);
    for (int i = 0; i < k - 1; i++) a[i] = k - 2 - i;
    return a;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...