# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1000922 | 2024-06-18T11:24:14 Z | 변재우(#10901) | 축구 경기장 (IOI23_soccer) | C++17 | 0 ms | 0 KB |
#include "soccer.h" int biggest_stadium(int N, std::vector<std::vector<int>> F) { int a=0, b=0; for(int i=0; i<N; i++) for(int j=0; j<N; j++) if(F[i][j]) a=i, b=i; return N*N-1-min(a, N-a-1)-min(b, N-b-1); }