# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
595531 | vh50 | Uplifting Excursion (BOI22_vault) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "art.h"
using namespace std;
void solve(int N)
{
vector <int> v;
if(N <= 6)
{
v = {1, 2, 3, 4, 5, 6};
while(publish(v))
{
next_permutation(v.begin(), v.end());
}
answer(v);
}
}