# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
942381 | vjudge1 | Bold (COCI21_bold) | C++17 | 1 ms | 348 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;
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;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |