제출 #980117

#제출 시각아이디문제언어결과실행 시간메모리
980117vjudge1가장 긴 여행 (IOI23_longesttrip)C++17
5 / 100
3 ms596 KiB
#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;

vector<int> longest_trip(int N, int D){
	vector<int> ans;
	rep(i,0,N) ans.pb(i);
	return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...