Submission
Status:
--------------------
Subtask/Task Score:
0/100
Score: 0
User: idinkinjai
Problemset: Femboy
Language: cpp
Time: 0.005 second
Submitted On: 2025-10-18 13:04:23
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n;cin>>n;
vector<string> ori={
"##### ##### # # #### ##### # #",
"# # ## ## # # # # # # ",
"##### ##### # # # #### # # # ",
"# # # # # # # # # ",
"# ##### # # #### ##### # "
};
vector<string> res;
for (string line: ori){
string newline="";
for (char c: line){
newline+=string(n, c);
}
for (int i=0;i<n;i++){
res.push_back(newline);
}
}
for (auto &l : res){
cout <<l<<"\n";
}
return 0;
}