Submission
Status:
--------------------
Subtask/Task Score:
0/100
Score: 0
User: MyYammGods
Problemset: Femboy
Language: cpp
Time: 0.030 second
Submitted On: 2025-10-06 22:49:51
#include <bits/stdc++.h>
using namespace std;
int main(){
cin.tie(NULL);ios_base::sync_with_stdio(false);
int l;
cin >> l;
vector<string>femboy = {
"#####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 # "
};
for(string line : femboy){
for(int row=0;row<l;row++){
for(char ch : line){
if(ch=='#'){
for(int i=0;i<l;i++){
cout << "#";
}
}else if(ch=='x'||ch==' '){
for(int i=0;i<l;i++){
cout << " ";
}
}
}
cout << endl;
}
}
}