제출 #833468

#제출 시각아이디문제언어결과실행 시간메모리
833468christinelynn순열 (APIO22_perm)C++17
0 / 100
1 ms220 KiB
#include<bits/stdc++.h> using namespace std; #define ioss ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0) #define int long long #define tup tuple<int, int, int> #define pii pair<int, int> #define fi first #define se second #define pub push_back #define pob pop_back vector<int> construct_permutation(int k) { vector<int> ans; for(int i = k-2; i >= 0; i--) ans.pub(i); return ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...