답안 #982943

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
982943 2024-05-15T05:41:23 Z Faisal_Saqib 순열 (APIO22_perm) C++17
10 / 100
1 ms 348 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-2;i>=0;i--)
            ans.pb(i);
    }
    else{

    }
    return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
3 Incorrect 1 ms 348 KB Integer 0 violates the range [1, 5000]
4 Halted 0 ms 0 KB -