Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: .n0t_gloomy.
Problemset: อโมกุส
Language: cpp
Time: 0.003 second
Submitted On: 2025-10-12 21:36:12
#include <bits/stdc++.h>
using namespace std;
vector<vector<string>> femboy = {
{
" ###",
"## ",
"####",
" # #"
}
};
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n;
cin >> n;
for (int row = 0; row < 4; row++)
{
for (int i = 0; i < n; i++)
{
for (auto ch : femboy)
{
for (int col = 0; col < 4; col++)
{
char c = ch[row][col];
for (int j = 0; j < n; j++)
{
cout << (c == '#' ? '#' : ' ');
}
}
cout << " ";
}
cout << '\n';
}
}
return 0;
}