1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
def p_first(n):
for i in range(n):
print('@'*n+' '*3*n+'@'*n)
def p_second(n):
for i in range(n):
print('@' * n + ' ' * 2 * n + '@' * n)
def p_mid(n):
for i in range(n):
print('@' * 3*n)
def sol(n):
p_first(n)
p_second(n)
p_mid(n)
p_second(n)
p_first(n)
sol(int(input()))
|
cs |
반응형
'python-algorithm' 카테고리의 다른 글
백준 14647 준오는 조류혐오야!! (0) | 2022.06.16 |
---|---|
codeforces 509A - Maximum in Table (0) | 2022.06.13 |
백준 24265 알고리즘 수업 - 알고리즘의 수행 시간 4 (0) | 2022.06.09 |
codeforces 1351A - A+B (Trial Problem) (0) | 2022.06.07 |
codeforces 677A - Vanya and Fence (0) | 2022.05.31 |
댓글