답안 #1006894

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1006894 2024-06-24T09:38:19 Z Abito 축구 경기장 (IOI23_soccer) C++17
0 / 100
0 ms 348 KB
#include "soccer.h"
#include <bits/stdc++.h>
using namespace std;
int mvx[]={1,0,-1,0},mvy[]={0,1,0,-1};
int biggest_stadium(int n, std::vector<std::vector<int>> a)
{
    //bool ok=true;
    for (int i=0;i<n;i++){
        for (int j=0;j<n;j++){
            if (!a[i][j]) continue;
            int h=0;
            for (int k=0;k<4;k++){
                int x=i+mvx[k],y=j+mvy[k];
                if (x<0 || x>=n || y<0 || y>=n) continue;
                h+=(!a[x][y]);
            }
            if (h>1) return 0;
        }
    }return 1;
}
# 결과 실행 시간 메모리 Grader output
1 Partially correct 0 ms 344 KB partial
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 0 ms 344 KB partial
2 Incorrect 0 ms 348 KB wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 0 ms 344 KB partial
2 Incorrect 0 ms 348 KB wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 0 ms 344 KB partial
2 Incorrect 0 ms 348 KB wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 0 ms 344 KB partial
2 Incorrect 0 ms 348 KB wrong
3 Halted 0 ms 0 KB -