create dev channel

This commit is contained in:
2025-05-07 04:44:30 +09:00
parent 603fca2b20
commit 16a8e59450
426 changed files with 643 additions and 36 deletions

19
zeta/py/completed/2447.py Normal file
View File

@@ -0,0 +1,19 @@
N = int(input())
A = ([" "] * N + ["\n"]) * N
def B(n, x, y):
global A
if n == 0:
A[(N+1)*y+x] = "*"
return
c = n//3
for i in range(3):
for j in range(3):
if i == 1 and j == 1:
continue
B(c, x+c*i, y+c*j)
B(N, 0, 0)
for i in A:
print(i, end="")