Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: qweqwe

Problemset: อโมกุส

Language: cpp

Time: 0.002 second

Submitted On: 2025-10-08 17:39:15

#include <bits/stdc++.h>
#define speed cin.tie(0)->sync_with_stdio(0)
#define ll long long
#define pii pair<int,int>
using namespace std;

vector<string> amogus={" ###",
					   "##  ",
					   "####",
					   " # #"};

int main(){
	speed;
	int n;cin >> n;
	for (int i=0;i<4*n;i++){
		for (int j=0;j<4*n;j++){
			cout << amogus[i/n][j/n];
		}cout << "\n";
	}
	return 0;
}