답안 #983865

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
983865 2024-05-16T07:32:32 Z vjudge1 순열 (APIO22_perm) C++17
0 / 100
0 ms 344 KB
#include "perm.h"
#include<bits/stdc++.h>
using namespace std;
vector<int> construct_permutation(long long k)
{
	vector<int> v(k - 1);
	for (int i = 0; i < k - 1; i++) {
		v[i] = k - i - 1;
	}
	return v;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Integer 2 violates the range [0, 1]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Integer 2 violates the range [0, 1]
2 Halted 0 ms 0 KB -