Submission #982831

#TimeUsernameProblemLanguageResultExecution timeMemory
982831alo_54순열 (APIO22_perm)C++17
0 / 100
0 ms348 KiB
#include "perm.h"
#include <bits/stdc++.h>
using namespace std;

std::vector<int> construct_permutation(long long k)
{
	vector <int> resp;

	for (int i = k - 1; i >= 0; i--)
	{
		resp.push_back(i);
	}
	

	return resp;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...