제출 #896488

#제출 시각아이디문제언어결과실행 시간메모리
896488SuPythonyA Plus B (IOI23_aplusb)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; vector<long long> smallest_sums(int N, vector<long long> A, vector<long long> B) { vector<long long> ans; int s=0, a=0, b=0; while (s<N) { ans.push_back(A[a]+B[b]); s++; if (b==N-1) a++; else if (a==N-1) b++; else if (A[a+1]+B[b]<=B[b+1]+A[a]) a++; else b++; } return ans; }

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

/usr/bin/ld: /tmp/ccfyvEjW.o: in function `main':
grader.cpp:(.text.startup+0x271): undefined reference to `smallest_sums(int, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status