Submission #982942

# Submission time Handle Problem Language Result Execution time Memory
982942 2024-05-15T05:40:19 Z Faisal_Saqib Permutation (APIO22_perm) C++17
0 / 100
0 ms 344 KB
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
vector<int> construct_permutation(ll k)
{
    vector<int> ans;
    if(k<=90)
    {
        for(int i=k;i>=1;i--)
            ans.pb(i);
    }
    else{
        
    }
    return ans;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Integer 3 violates the range [0, 2]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Integer 3 violates the range [0, 2]
2 Halted 0 ms 0 KB -