Submission #445443

#TimeUsernameProblemLanguageResultExecution timeMemory
445443retsigerBold (COCI21_bold)C++14
50 / 50
1 ms204 KiB
#include<bits/stdc++.h> using namespace std; const int maxn = 105; int N, M; bool a[maxn][maxn]; char A[maxn][maxn]; int main() { ios::sync_with_stdio(0); cin.tie(0); cin >> N >> M; for (int i = 0; i < N; ++i) { for (int j = 0; j < M; ++j) { cin >> A[i][j]; if (A[i][j] == '#') { a[i][j] = a[i + 1][j] = a[i][j + 1] = a[i + 1][j + 1] = 1; } } } for (int i = 0; i < N; ++i) { for (int j = 0; j < M; ++j) { if (a[i][j]) cout << '#'; else cout << '.'; } cout << '\n'; } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...