답안 #982832

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
982832 2024-05-14T19:21:06 Z vjudge1 순열 (APIO22_perm) C++17
10 / 100
474 ms 51148 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 - 2; i >= 0; i--)
	{
		resp.push_back(i);
	}
	

	return resp;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 1 ms 440 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 1 ms 440 KB Output is correct
3 Incorrect 474 ms 51148 KB Integer 39992 violates the range [1, 5000]
4 Halted 0 ms 0 KB -