# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1023549 | 2024-07-15T02:15:13 Z | LIF | 축구 경기장 (IOI23_soccer) | C++17 | 0 ms | 448 KB |
#include "soccer.h" #include<bits/stdc++.h> using namespace std; int FF[2005][2005]; int FF2[2005][2005]; int biggest_stadium(int N, vector<vector<int>> F) { for(int i=0;i<F.size();i++) { for(int j=0;j<F[i].size();j++)FF[i+1][j+1] = F[i][j]; } bool exis = false; int ii = -1; int jj = -1; for(int i=1;i<=N;i++) { for(int j=1;j<=N;j++) { if(FF[i][j] == 1) { exis = true; ii = i; jj = j; } } } if(exis == false)return N*N; int ans1 = 0; int ans2 = 0; for(int i=1;i<=N;i++) { for(int j=1;j<=N;j++) { if((j > jj) || i > ii)ans1++; } } for(int i=1;i<=N;i++) { for(int j=1;j<=N;j++) { if((j < jj) || i < ii)ans2++; } } return max(ans1,ans2); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 0 ms | 344 KB | partial |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | ok |
2 | Incorrect | 0 ms | 448 KB | wrong |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | ok |
2 | Incorrect | 0 ms | 448 KB | wrong |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 0 ms | 344 KB | partial |
2 | Correct | 0 ms | 348 KB | ok |
3 | Incorrect | 0 ms | 448 KB | wrong |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 0 ms | 344 KB | partial |
2 | Correct | 0 ms | 348 KB | ok |
3 | Incorrect | 0 ms | 448 KB | wrong |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 0 ms | 344 KB | partial |
2 | Correct | 0 ms | 348 KB | ok |
3 | Incorrect | 0 ms | 448 KB | wrong |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 0 ms | 344 KB | partial |
2 | Correct | 0 ms | 348 KB | ok |
3 | Incorrect | 0 ms | 448 KB | wrong |
4 | Halted | 0 ms | 0 KB | - |