Submission #682571

#TimeUsernameProblemLanguageResultExecution timeMemory
682571vjudge1Bold (COCI21_bold)C++17
50 / 50
1 ms324 KiB
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(nullptr);

  int n, m;
  cin >> n >> m;

  vector<string> a(n);

  for (int i = 0; i < n; ++i) {
    cin >> a[i];
  }

  for (int i = n - 2; i >= 0; --i) {
    for (int j = m - 2; j >= 0; --j) {
      if (a[i][j] == '#') {
        a[i][j + 1] = a[i + 1][j + 1] = a[i + 1][j] = '#';
      }
    }
  }

  for (int i = 0; i < n; ++i) {
    cout << a[i] << '\n';
  }

  return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...