제출 #845999

#제출 시각아이디문제언어결과실행 시간메모리
845999Trisanu_Das가장 긴 여행 (IOI23_longesttrip)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #include "longesttrip.h" int n; vector<int> ans; vector<int> longest_trip(int N, int D){ int n = N; ans.clear(); for(int i = 0; i < n; i++) ans.push_back(i); return ans;

컴파일 시 표준 에러 (stderr) 메시지

longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:10:13: error: expected '}' at end of input
   10 |   return ans;
      |             ^
longesttrip.cpp:7:39: note: to match this '{'
    7 | vector<int> longest_trip(int N, int D){
      |                                       ^