#include "perm.h"
#include <bits/stdc++.h>
using namespace std;
std::vector<int> construct_permutation(long long k)
{
// vector<int> a;
// while (k > 2){
// if (k%2 == 1){
// a.pb(1);
// k--;
// }else{
// a.pb(0);
// k/=2;
// }
// }
// reverse(a.begin(), a.end());
// int mini = 0; int maximum = 2;
// cout <<
k--;
vector<int> ans;
for (int i = k-1; i >= 0; i--) ans.push_back(i);
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 |
498 ms |
51444 KB |
Integer 39992 violates the range [1, 5000] |
4 |
Halted |
0 ms |
0 KB |
- |