Submission #467007

#TimeUsernameProblemLanguageResultExecution timeMemory
467007LucaIlieMaxcomp (info1cup18_maxcomp)C11
60 / 100
1090 ms12696 KiB
#include <stdio.h> #define MAX_N 1000 int a[MAX_N][MAX_N]; int abs( int a ) { return a > 0 ? a : -a; } int main() { int n, m, maxW, w, l, c, l1, c1, l2, c2; scanf( "%d%d", &n, &m ); for ( l = 0; l < n; l++ ) { for ( c = 0; c < m; c++ ) scanf( "%d", &a[l][c] ); } maxW = -1; for ( l1 = 0; l1 < n; l1++ ) { for ( c1 = 0; c1 < m; c1++ ) { for ( l2 = 0; l2 < n; l2++ ) { for ( c2 = 0; c2 < m; c2++ ) { w = abs( a[l1][c1] - a[l2][c2] ) - abs( l1 - l2 ) - abs( c1 - c2 ) - 1; if ( w > maxW ) maxW = w; } } } } printf( "%d", maxW ); return 0; }

Compilation message (stderr)

maxcomp.c: In function 'main':
maxcomp.c:14:5: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   14 |     scanf( "%d%d", &n, &m );
      |     ^~~~~~~~~~~~~~~~~~~~~~~
maxcomp.c:17:13: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   17 |             scanf( "%d", &a[l][c] );
      |             ^~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...