| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1362692 | jackhui100101 | 순열 (APIO22_perm) | C++20 | 173 ms | 51280 KiB |
#include "perm.h"
using namespace std;
vector<int> construct_permutation(long long k){
vector<int> a;
for (int i = k - 2; i >= 0; i--){
a.push_back(i);
}
return a;
}| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
