# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
488661 |
2021-11-19T21:59:33 Z |
JovanB |
Bold (COCI21_bold) |
C++17 |
|
0 ms |
320 KB |
#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 time |
Memory |
Grader output |
1 |
Correct |
0 ms |
320 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
204 KB |
Output is correct |
4 |
Correct |
0 ms |
204 KB |
Output is correct |
5 |
Correct |
0 ms |
204 KB |
Output is correct |