본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 23809번 골뱅이 찍기 - 돌아간 ㅈ

by 현장 2022. 1. 3.

-코드

n = int(input())
for i in range(n * 5):
    if i // n == 0 or i // n == 4:
        print('@' * n + ' ' * n * 3 + '@' * n)
    elif i // n == 1 or i // n == 3:
        print('@' * n + ' ' * n * 2 + '@' * n)
    else:
        print('@' * 3 * n)