# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
149720 | Outfraware Boat People (#200) | List of Unique Integers (FXCUP4_unique) | C++17 | 5 ms | 256 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 "unique.h"
std::vector<int> PickUnique(int N) {
UniqueCount(0, N-1);
UniqueCount(1, N-2);
return std::vector<int>({0, 0, 1, 0, 0});
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |