Submission
Status:
PPPPPPPPPP
Score: 100
User: Phat12
Problemset: อโมกุส
Language: cpp
Time: 0.002 second
Submitted On: 2025-03-25 20:38:31
#include<bits/stdc++.h>
#define all(x) x.begin(),x.end()
#define fastio ios_base::sync_with_stdio(false);cin.tie(nullptr);
using namespace std;
const string amongus[] = {
" ###",
"## ",
"####",
" # #"
};
int main(){
fastio
int n;
cin >> n;
for (int i=0;i<4;i++){
for (int k=0;k<n;k++){
for (int j=0;j<4;j++){
for (int l=0;l<n;l++){
cout << amongus[i][j];
}
}
cout << '\n';
}
}
return 0;
}