제출 #572907

#제출 시각아이디문제언어결과실행 시간메모리
572907moday_morning순열 (APIO22_perm)C++17
10 / 100
553 ms51244 KiB
#include "perm.h" #include <bits/stdc++.h> using namespace std; vector<int> construct_permutation(long long k) { // k <= 90 vector <int> ans = {}; for (int i = k - 2; i >= 0; i--) { ans.push_back(i); } return ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...