제출 #982832

#제출 시각아이디문제언어결과실행 시간메모리
982832vjudge1순열 (APIO22_perm)C++17
10 / 100
474 ms51148 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 - 2; i >= 0; i--) { resp.push_back(i); } return resp; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...