# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
980116 | 2024-05-11T23:51:13 Z | vjudge1 | 가장 긴 여행 (IOI23_longesttrip) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> #define rep(a,b,c) for(int a=b; a<c; a++) #define repa(a,b) for(auto a:b) #define ll long long #define pll pair<ll, ll> #define pb push_back #define fi first #define se second using namespace std; int longest_trip(int N, int D){ vector<int> ans; rep(i,0,N) ans.pb(i); return ans; }