Submission #386864

#TimeUsernameProblemLanguageResultExecution timeMemory
386864phathnvBold (COCI21_bold)C++11
50 / 50
1 ms364 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 107; int m, n; char a[N][N]; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cin >> m >> n; for(int i = 1; i <= m; i++) cin >> (a[i] + 1); for(int i = m; i >= 1; i--) for(int j = n; j >= 1; j--) if (a[i][j] == '#') a[i + 1][j] = a[i][j + 1] = a[i + 1][j + 1] = '#'; for(int i = 1; i <= m; i++){ for(int j = 1; j <= n; j++) cout << a[i][j]; cout << '\n'; } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...