Submission #488661

#TimeUsernameProblemLanguageResultExecution timeMemory
488661JovanBBold (COCI21_bold)C++17
50 / 50
0 ms320 KiB
#include <bits/stdc++.h> using namespace std; using ll = long long; using ld = long double; string s[105]; string t[105]; int main(){ ios_base::sync_with_stdio(false), cin.tie(0); cout.precision(10); cout << fixed; int n, m; cin >> n >> m; for(int i=0; i<n; i++) cin >> s[i]; for(int i=0; i<n; i++) t[i] = s[i]; for(int i=0; i<n; i++){ for(int j=0; j<m; j++){ if(s[i][j] == '#'){ t[i][j] = '#'; if(i < n-1) t[i+1][j] = '#'; if(j < m-1) t[i][j+1] = '#'; if(i < n-1 && j < m-1) t[i+1][j+1] = '#'; } } } for(int i=0; i<n; i++) cout << t[i] << "\n"; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...