Submission #1134146

#TimeUsernameProblemLanguageResultExecution timeMemory
1134146sohamsen15Permutation (APIO22_perm)C++20
0 / 100
0 ms320 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 - 1 - i; return a; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...