# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1202457 | trashaccount | Permutation (APIO22_perm) | C++20 | 338 ms | 51168 KiB |
#include "perm.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
vector <int> construct_permutation(ll k){
if (k <= 90){
vector <int> res = {};
for (int i = k-2; i >= 0; i--)
res.push_back(i);
return res;
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |