제출 #725515

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