Submission #780730

#TimeUsernameProblemLanguageResultExecution timeMemory
780730AndreyMaxcomp (info1cup18_maxcomp)C++14
0 / 100
3 ms212 KiB
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n,m,a,b,ans = 0; cin >> n >> m; int haha[n][m]; for(int i = 0; i < n; i++) { for(int j = 0; j < m; j++) { cin >> haha[i][j]; } } for(int i = 0; i < n; i++) { for(int j = 0; j < m; j++) { for(int k = 0; k < n; k++) { for(int y = 0; y < m; y++) { a = haha[i][j]; b = haha[k][y]; if(a < b) { swap(a,b); } ans = max(ans,b-a+abs(i-k)+abs(j-y)); } } } } cout << ans; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...