Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: lazybw_

Problemset: อโมกุส

Language: cpp

Time: 0.003 second

Submitted On: 2025-07-04 00:02:28

#include <bits/stdc++.h>

using namespace std;
using ll = int32_t;
#define fll(x) for(ll i = 0; i < x; i++)
#define endl cout<<'\n';

int main() {
    ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
    ll a; cin>>a;
    fll(a) {
        fll(a) cout<<' ';
        fll(3*a) cout<<'#';
        endl
    }
    fll(a) {
        fll(2*a) cout<<'#';
        endl
    }
    fll(a) {
        fll(4*a) cout<<'#';
        endl
    }
    fll(a) {
        fll(a) cout<<' ';
        fll(a) cout<<'#';
        fll(a) cout<<' ';
        fll(a) cout<<'#';
        endl
    }

    return 0;
}