結果

問題 No.223 1マス指定の魔方陣
ユーザー keikei
提出日時 2018-09-24 16:11:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,525 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,232 KB
最終ジャッジ日時 2024-09-22 05:12:33
合計ジャッジ時間 28,646 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
43,792 KB
testcase_01 AC 534 ms
43,812 KB
testcase_02 AC 521 ms
44,072 KB
testcase_03 AC 528 ms
43,940 KB
testcase_04 AC 532 ms
43,816 KB
testcase_05 AC 536 ms
43,680 KB
testcase_06 AC 525 ms
44,064 KB
testcase_07 AC 531 ms
44,072 KB
testcase_08 AC 529 ms
43,936 KB
testcase_09 AC 526 ms
43,940 KB
testcase_10 AC 527 ms
43,944 KB
testcase_11 AC 533 ms
43,912 KB
testcase_12 AC 529 ms
44,064 KB
testcase_13 AC 529 ms
43,944 KB
testcase_14 AC 533 ms
43,660 KB
testcase_15 AC 526 ms
44,048 KB
testcase_16 AC 525 ms
43,680 KB
testcase_17 AC 519 ms
44,044 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 532 ms
44,044 KB
testcase_21 AC 538 ms
43,684 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 519 ms
43,804 KB
testcase_29 AC 523 ms
43,820 KB
testcase_30 AC 527 ms
43,920 KB
testcase_31 AC 524 ms
43,668 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 532 ms
44,064 KB
testcase_35 AC 532 ms
43,688 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 531 ms
44,064 KB
testcase_39 AC 526 ms
43,880 KB
testcase_40 AC 529 ms
44,068 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 524 ms
43,680 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
    <url:https://yukicoder.me/problems/no/217>
    問題文============================================================
    =================================================================
    解説=============================================================
    
    参考サイトや既存の魔法陣のテンプレ貼り付けてほい
    ================================================================
'''
import numpy as np
def magic(n):
    n = int(n)
    if n % 2 == 1:
        p = np.arange(1, n+1)
        return n*np.mod(p[:, None] + p - (n+3)//2, n) + np.mod(p[:, None] + 2*p-2, n) + 1
    elif n % 4 == 0:
        J = np.mod(np.arange(1, n+1), 4) // 2
        K = J[:, None] == J
        M = np.arange(1, n*n+1, n)[:, None] + np.arange(n)
        M[K] = n*n + 1 - M[K]
    else:
        p = n//2
        M = magic(p)
        M = np.block([[M, M+2*p*p], [M+3*p*p, M+p*p]])
        i = np.arange(p)
        k = (n-2)//4
        j = np.concatenate((np.arange(k), np.arange(n-k+1, n)))
        M[np.ix_(np.concatenate((i, i+p)), j)] = M[np.ix_(np.concatenate((i+p, i)), j)]
        M[np.ix_([k, k+p], [0, k])] = M[np.ix_([k+p, k], [0, k])]
    return M

n,x,y,z = input().strip().split(' ')
n,x,y,z =[int(n),int(x),int(y),int(z)]
x-=1
y-=1
ans = magic(n)

kx,ky = np.where(ans==z)
kx = int(kx)
ky = int(ky)
kx += n - y
ky += n - x
ans = np.concatenate([ans,ans,ans])
ans = np.concatenate([ans,ans,ans],axis=1)
for i in range(n):
    for j in range(n):
        print(ans[i+kx][j+ky],end=" ")
    print("")
0