| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 832405 | _martynas | Crosses on the Grid (FXCUP4_cross) | C++17 | 49 ms | 3536 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 "cross.h"
using namespace std;
long long SelectCross(int K, vector<int> I, vector<int> O) {
int N = I.size();
long long mx = 0;
for(int i = 0; i < N; i++) {
mx = max(mx, 1LL*I[i]*(2*O[i]-I[i]));
}
return mx;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
