# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
488661 | JovanB | Bold (COCI21_bold) | C++17 | 0 ms | 320 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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 |
---|---|---|---|---|
Fetching results... |