| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1343707 | ElyesChaabouni | Permutation (APIO22_perm) | C++20 | 257 ms | 51152 KiB |
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
vector<int> construct_permutation(long long k) {
vector<int> ans;
for (int i=0; i<k-1; i++) {
ans.push_back(k-2-i);
}
return ans;
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
