Submission

Status:

PPPPPPPPPPPPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: kavin8888

Problemset: Femboy

Language: cpp

Time: 0.023 second

Submitted On: 2025-10-19 20:16:49

#include<bits/stdc++.h>
using namespace std;
#define ei else if
vector<string> out{	"#####x#####x#   #x#### x#####x#   #",
    				"#    x#    x## ##x#   #x#   #x # # ",
    				"#####x#####x# # #x#### x#   #x  #  ",
  				    "#    x#    x#   #x#   #x#   #x  #  ",
 				    "#    x#####x#   #x#### x#####x  #  "
    			  };
void femboy(int n,string x)
{
	for(int row=0;row<n;row++)
	{
		for(int col=0;col<36;col++)
		{
			if(x[col]=='#')
			{
				for(int i=0;i<n;i++)
				{
					cout<<"#";	
				}
			}
			ei(x[col]=='x')
			{
				cout<<" ";
			}
			ei(x[col]=' ')
			{
				for(int i=0;i<n;i++)
				{
					cout<<" ";
				}
			}
		}
		cout<<'\n';
	}
	return;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin>>n;
	for(string l:out)
	{
		femboy(n,l);
	}
}