답안 #1006886

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1006886 2024-06-24T09:34:15 Z Abito 축구 경기장 (IOI23_soccer) C++17
0 / 100
0 ms 348 KB
#include "soccer.h"
#include <bits/stdc++.h>
using namespace std;
int biggest_stadium(int n, std::vector<std::vector<int>> a)
{
    int x=-1,y=-1,o=0;
    for (int i=0;i<n;i++){
        for (int j=0;j<n;j++){
            if (a[i][j]) x=i,y=j,o++;
        }
    }
    if (x==-1) return n*n;
    if (o>1) return 0;
    if (a[0][0]==1 || a[0][n-1]==1 || a[n-1][0]==1 || a[n-1][n-1]==1) return n*n;
    else return 0;
}

Compilation message

soccer.cpp: In function 'int biggest_stadium(int, std::vector<std::vector<int> >)':
soccer.cpp:6:14: warning: variable 'y' set but not used [-Wunused-but-set-variable]
    6 |     int x=-1,y=-1,o=0;
      |              ^
# 결과 실행 시간 메모리 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 -