# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
843953 | 2023-09-04T17:58:47 Z | mihaibun | Soccer Stadium (IOI23_soccer) | C++17 | 0 ms | 0 KB |
#include <iostream> #include <soccer.h> using namespace std; int biggest_stadium(int N, int F[2001][2001] ) { int i,j,x; for(i = 0; i < N; i++) for(j = 0; j < N; j++) if(F[i][j]==0) x++; return x; }