# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1170210 | antonn | Longest Trip (IOI23_longesttrip) | C++20 | 0 ms | 0 KiB |
vector<int> longest_trip(int n, int d) {
if (d == 3) {
vector<int> path;
for (int i = 0; i < n; ++i) path.push_back(i);
return path;
}
}