| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1234098 | loloka | Soccer Stadium (IOI23_soccer) | C++20 | 193 ms | 31772 KiB |
#include "soccer.h"
#include<bits/stdc++.h>
using namespace std;
int biggest_stadium(int n, vector<vector<int>> f) {
int kl = 0, ii, jj;
for(int i = 0; i < n; i++) {
for(int j = 0; j < n; j++) {
if(f[i][j] == 1) kl++, ii = i, jj = j;
}
}
if(kl == 0) return n * n;
if(kl == 1) return n * n - min(ii + 1, n - ii) * min(jj + 1, n - jj);
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
