제출 #982831

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