Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: black_guy001
Problemset: อโมกุส
Language: cpp
Time: 0.003 second
Submitted On: 2026-03-19 14:51:06
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
cout << " ";
}
for(int j=0;j<n*3;j++){
cout << "#";
}
cout << endl;
}
for(int i=0;i<n;i++){
for(int j=0;j<n*2;j++){
cout << "#";
}
cout << endl;
}
for(int i=0;i<n;i++){
for(int j=0;j<n*4;j++){
cout<<"#";
}
cout << endl;
}
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
cout << " ";
}
for(int j=0;j<n;j++){
cout<<"#";
}
for(int j=0;j<n;j++){
cout << " ";
}
for(int j=0;j<n;j++){
cout<<"#";
}
cout << endl;
}
}