Submission
Status:
PPPPPPPPPPPPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: MyYammGods
Problemset: Femboy
Language: cpp
Time: 0.024 second
Submitted On: 2025-10-06 22:56:12
#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'){
cout << " ";
}else if(ch==' '){
for(int i=0;i<l;i++){
cout << " ";
}
}
}
cout << endl;
}
}
}