제출 #977509

#제출 시각아이디문제언어결과실행 시간메모리
977509Tsagana순열 (APIO22_perm)C++17
10 / 100
467 ms51232 KiB
#include "perm.h" //OP #include<bits/stdc++.h> #define IOS ios_base::sync_with_stdio(false);cin.tie();cout.tie(); #define all(x) x.begin(), x.end() #define pi pair<int, int > #define pq priority_queue #define lb lower_bound #define ub upper_bound #define pb push_back #define eb emplace_back #define mset multiset #define F first #define S second using namespace std; vector<int> construct_permutation(long long k) { vector<int> v; v.clear(); for (int i = k-2; i >= 0; i--) { v.pb(i); } return v; } //ED
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...