Submission #811472

#TimeUsernameProblemLanguageResultExecution timeMemory
811472tlnk07Bold (COCI21_bold)C++17
50 / 50
2 ms3412 KiB
#include <bits/stdc++.h> using namespace std; long long n, m; string a[100001]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> n >> m; 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"; }
#Verdict Execution timeMemoryGrader output
Fetching results...