Submission #942381

#TimeUsernameProblemLanguageResultExecution timeMemory
942381vjudge1Bold (COCI21_bold)C++17
50 / 50
1 ms348 KiB
#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 timeMemoryGrader output
Fetching results...