Submission #955675

#TimeUsernameProblemLanguageResultExecution timeMemory
955675OtalpPermutation (APIO22_perm)C++17
10 / 100
499 ms51280 KiB
#include "perm.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back


vector<int> construct_permutation(ll k)
{
    vector<int> ans;
    for(int i=k-2; i>=0; i--){
        ans.pb(i);
    }
    return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...