제출 #1027883

#제출 시각아이디문제언어결과실행 시간메모리
1027883Mr_Husanboy가장 긴 여행 (IOI23_longesttrip)C++17
5 / 100
2 ms344 KiB

#include "longesttrip.h"
#include <bits/stdc++.h>

using namespace std;

#define ll long long
#define ff first
#define ss second
#define all(a) (a).begin(), (a).end()

template<typename T>
int len(T &a){return a.size();}





vector<int> longest_trip(int n, int d)
{
    if(d == 3){
        vector<int> a(n); 
        iota(all(a), 0);
        return a;
    }
    return vector<int>(n, 0);
}
#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...