| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1343707 | ElyesChaabouni | 순열 (APIO22_perm) | C++20 | 257 ms | 51152 KiB |
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
vector<int> construct_permutation(long long k) {
vector<int> ans;
for (int i=0; i<k-1; i++) {
ans.push_back(k-2-i);
}
return ans;
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
