# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
881714 | 2023-12-01T18:51:54 Z | spdling | A Plus B (IOI23_aplusb) | C++17 | 0 ms | 0 KB |
vector<int> smallest_sums(int N, vector<int> A, vector<int> B) { vector<int> ans; int ans_n = 0; int i = 0, j = 0; while (ans_n < N) { ans.push_back(A[i] + B[j]); ans_n++; if (A[i] + B[j+1] < A[i+1] + B[j]) { ++j; } else { ++i; } } return ans; }