Submission #1100233

# Submission time Handle Problem Language Result Execution time Memory
1100233 2024-10-13T10:33:22 Z vjudge1 Maxcomp (info1cup18_maxcomp) C++
0 / 100
1 ms 504 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main()
{
    int n, m;
    cin >> n >> m;
    int a[n][m];
    for(int i = 1; i <= n; i++)
    {
        for(int j = 1; j <= m; j++)
        {
            cin >> a[i][j];
        }
    }
    int mx = -INT_MAX;
    for(int i = 1; i <= n; i++)
    {
        for(int j = 1; j <= m; j++)
        {
            for(int r = 1; r <= n; r++)
            {
                for(int k = 1; k <= m; k++)
                {
                    mx = max(mx, a[i][j] - a[r][k] - abs(i - r) - abs(j - k) - 1);
                }
            }
        }
    }
    cout << mx;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 504 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 336 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 504 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 504 KB Output isn't correct
2 Halted 0 ms 0 KB -