제출 #1178026

#제출 시각아이디문제언어결과실행 시간메모리
1178026JelalTkm순열 (APIO22_perm)C++20
10 / 100
321 ms51284 KiB
#include <bits/stdc++.h>
#include "perm.h"
#pragma GCC optimize ("O3")
#pragma GCC target ("sse4")

using namespace std;

#define ll long long int

// const int N = 1000 + 10;
// const int md = 1e9 + 7;
// const int INF = 5e6;

vector<int> construct_permutation(ll k) {
  vector<int> ans;
  for (int i = k - 2; i >= 0; i--)
    ans.push_back(i);

  return ans;
}

// int32_t main(int32_t argc, char *argv[]) {
//   ios::sync_with_stdio(false);
//   cin.tie(nullptr);

//   int T = 1;
//   // cin >> T;
//   while (T--) {
        
//   }

//     return 0;
//   }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...