Submission #1134147

#TimeUsernameProblemLanguageResultExecution timeMemory
1134147sohamsen15Permutation (APIO22_perm)C++20
10 / 100
313 ms49244 KiB
#include "perm.h" #include <bits/stdc++.h> using namespace std; using ll = long long; vector<int> construct_permutation(ll k) { vector<int> a(k - 1); for (int i = 0; i < k - 1; i++) a[i] = k - 2 - i; return a; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...