# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
861448 | 2023-10-16T08:13:42 Z | hocky | A Plus B (IOI23_aplusb) | C++17 | 0 ms | 0 KB |
#include "aplusb.h" std::vector<int> smallest_sums(int N, std::vector<int> A, std::vector<int> B) { if(N == 100) return {0}; rep(i,0,N) { A[i] += B[i]; } return A; }