답안 #968236

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
968236 2024-04-23T08:38:05 Z batsukh2006 순열 (APIO22_perm) C++17
0 / 100
1 ms 348 KB
#include<bits/stdc++.h>
#include "perm.h"
using namespace std;
 
#define MOD 1000000007
#define ff first
#define ss second
#define endl '\n'

vector<int> construct_permutation(long long k){
	vector<int> v;
	for(int i=k-2; k>=0; k--) v.push_back(i);
	return v;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -