# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1238160 | CyberCow | 가장 긴 여행 (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;
}