# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1238160 | CyberCow | Longest Trip (IOI23_longesttrip) | C++20 | 0 ms | 0 KiB |
#include "longesttrip.h"
#include <vector>
using namespace std;
vector<int> longest_trip(int N, int D)
{
vector<int> ans;
for (int i = 0; i < N; i++)
{
ans.push_back(0);
}
return;
}