답안 #1000942

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1000942 2024-06-18T11:38:24 Z 변재우(#10901) 축구 경기장 (IOI23_soccer) C++17
0 / 100
1 ms 604 KB
#include "soccer.h"
#include <bits/stdc++.h>
using namespace std;

const int Nmax=2010;
int cnt, X[Nmax][Nmax], Y[Nmax][Nmax];

int biggest_stadium(int N, std::vector<std::vector<int>> F)
{
    for(int i=1; i<=N; i++) for(int j=1; j<=N; j++) {
        X[i][j]=X[i-1][j]+F[i-1][j-1], Y[i][j]=Y[i][j-1]+F[i-1][j-1], cnt+=F[i-1][j-1];
    }
    for(int i=1; i<=N; i++) for(int j=1; j<=N; j++) if(!F[i][j]) {
        if(X[N][j] && Y[i][N]) return 0;
    }
    return N*N-cnt;
}
# 결과 실행 시간 메모리 Grader output
1 Partially correct 1 ms 348 KB partial
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 604 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 604 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 1 ms 348 KB partial
2 Runtime error 1 ms 604 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 1 ms 348 KB partial
2 Runtime error 1 ms 604 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 1 ms 348 KB partial
2 Runtime error 1 ms 604 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 1 ms 348 KB partial
2 Runtime error 1 ms 604 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -