| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1016757 | vjudge1 | 3D Histogram (COCI20_histogram) | C++17 | 2557 ms | 4648 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<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
int a[n], b[n];
for(int i = 0; i < n; i ++)
cin >> a[i] >> b[i];
long long ans = 0;
for(int i = 0; i < n; i ++)
{
int mia = a[i], mib = b[i];
for(int j = i; j < n; j ++)
{
mia = min(a[j], mia);
mib = min(b[j], mib);
ans = max(ans, 1ll * mia * mib * (j - i + 1));
}
}
cout << ans << endl;
return 0;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
