# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
942381 |
2024-03-10T14:40:34 Z |
vjudge1 |
Bold (COCI21_bold) |
C++17 |
|
1 ms |
348 KB |
#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 |
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 |