| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1087395 | belgianbot | A Plus B (IOI23_aplusb) | C++17 | 1092 ms | 1051832 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "aplusb.h"
#include <bits/stdc++.h>
std::vector<int> smallest_sums(int N, std::vector<int> A, std::vector<int> B) {
std::vector< int > small;
for (int i(0); i < N; i++) {
for (int j(0); j < N; j++) small.push_back(A[i] + B[j]);
}
sort (small.begin(), small.end());
small.erase(small.begin() + N, small.end());
return small;
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
