답안 #982831

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
982831 2024-05-14T19:18:44 Z alo_54 순열 (APIO22_perm) C++17
0 / 100
0 ms 348 KB
#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;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -