#include "bits/stdc++.h"
using namespace std;
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
long long n, m;
cin>>n>>m;
vector<string> c(n);
for(long long i = 0; i < n; i++) cin>>c[i];
for(long long i = n - 2; i > -1; i--){
for(long long j = m - 2; j > -1; j--){
if(c[i][j] == '#'){
c[i + 1][j + 1] = '#';
c[i + 1][j] = '#';
c[i][j + 1] = '#';
}
}
}
for(long long i = 0; i < n; i++) cout<<c[i]<<"\n";
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |