답안 #1081069

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1081069 2024-08-29T17:54:27 Z Kipras 가장 긴 여행 (IOI23_longesttrip) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;

vector<int> longest_trip(int N, int D)
{
    if(D==3||D==2)return N;
}

Compilation message

longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:7:26: error: could not convert 'N' from 'int' to 'std::vector<int>'
    7 |     if(D==3||D==2)return N;
      |                          ^
      |                          |
      |                          int