Submission
Status:
PPPPPPPPPP
Score: 100
User: MisterO
Problemset: อโมกุส
Language: cpp
Time: 0.003 second
Submitted On: 2024-10-14 23:54:27
#include<bits/stdc++.h>
#define F first
#define S second
#define ll long long
#define pii pair<ll,ll>
using namespace std;
string board[4] = {
" ###",
"## ",
"####",
" # #"
};
void sol(){
int n; cin>>n;
for(int i=1;i<=4;i++){
for(int l=1;l<=n;l++){
for(int j=1;j<=4;j++){
for(int k=1;k<=n;k++){
cout<<board[i-1][j-1];
}
}
cout<<"\n";
}
// cout<<"\n";
}
}
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
int tc = 1;
// cin>>tc;
while(tc--) sol();
}