Submission #445443

# Submission time Handle Problem Language Result Execution time Memory
445443 2021-07-18T03:41:27 Z retsiger Bold (COCI21_bold) C++14
50 / 50
1 ms 204 KB
#include<bits/stdc++.h>

using namespace std;

const int maxn = 105;

int N, M;
bool a[maxn][maxn];
char A[maxn][maxn];

int main() {
  ios::sync_with_stdio(0); cin.tie(0);
  cin >> N >> M;
  for (int i = 0; i < N; ++i) {
    for (int j = 0; j < M; ++j) {
      cin >> A[i][j];
      if (A[i][j] == '#') {
        a[i][j] = a[i + 1][j] = a[i][j + 1] = a[i + 1][j + 1] = 1;
      }
    }
  }
  for (int i = 0; i < N; ++i) {
    for (int j = 0; j < M; ++j) {
      if (a[i][j]) cout << '#';
      else cout << '.';
    }
    cout << '\n';
  }
  return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 204 KB Output is correct
2 Correct 1 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 1 ms 204 KB Output is correct
5 Correct 0 ms 204 KB Output is correct