| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1233734 | nikulid | 축구 경기장 (IOI23_soccer) | C++20 | 0 ms | 328 KiB |
#include "soccer.h"
using namespace std;
#define pb push_back
#define mp make_pair
// (y,x)
int biggest_stadium(int n, vector<vector<int>> f){
int deduct=0;
for(int y=0; y<n; y++){
for(int x=0; x<n; x++){
if(f[y][x]){
deduct=1;
}
}
}
return n*n-deduct;
}| # | 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... | ||||
