Submission #843948

#TimeUsernameProblemLanguageResultExecution timeMemory
843948mihaibunSoccer Stadium (IOI23_soccer)C++17
Compilation error
0 ms0 KiB
#include <iostream> #include <soccer.h> using namespace std; int biggest_stadium(int N, int[2001][] F) { int i,j,x; for(i = 0; i < N; i++) for(j = 0; j < N; j++) if(F[i][j]==0) x++; return x; }

Compilation message (stderr)

soccer.cpp:5:38: error: multidimensional array must have bounds for all dimensions except the first
    5 | int biggest_stadium(int N, int[2001][] F)
      |                                      ^
soccer.cpp:5:40: error: expected ',' or '...' before 'F'
    5 | int biggest_stadium(int N, int[2001][] F)
      |                                        ^
soccer.cpp: In function 'int biggest_stadium(int)':
soccer.cpp:10:16: error: 'F' was not declared in this scope
   10 |             if(F[i][j]==0) x++;
      |                ^