답안 #1107842

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1107842 2024-11-02T07:37:11 Z coolboy19521 축구 경기장 (IOI23_soccer) C++17
0 / 100
1 ms 504 KB
#include "soccer.h"

int biggest_stadium(int N, std::vector<std::vector<int>> F)
{
    bool f = true;
    int c = 0;
    for (int i = 0; i < N; i ++) {
        for (int j = 0; j < N; j ++) {
            if (F[i][j] == 1) {
                if (0 != i && 0 != j) {
                    f = false;
                }
            } else {
                c ++;
            }
        }
    }
    if (f) {
        return c;
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Partially correct 1 ms 336 KB partial
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 504 KB wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 504 KB wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 1 ms 336 KB partial
2 Incorrect 1 ms 504 KB wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 1 ms 336 KB partial
2 Incorrect 1 ms 504 KB wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 1 ms 336 KB partial
2 Incorrect 1 ms 504 KB wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 1 ms 336 KB partial
2 Incorrect 1 ms 504 KB wrong
3 Halted 0 ms 0 KB -