結果

問題 No.2212 One XOR Matrix
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-02-10 23:22:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-07-07 17:19:52
合計ジャッジ時間 2,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,128 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 41 ms
58,624 KB
testcase_05 AC 51 ms
64,512 KB
testcase_06 AC 51 ms
67,968 KB
testcase_07 AC 65 ms
76,800 KB
testcase_08 AC 94 ms
78,592 KB
testcase_09 AC 164 ms
85,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1:
    print(-1)
    exit()

base = [[7,14,0,8],
        [4,12,2,11],
        [15,9,6,1],
        [13,10,5,3]]

if n == 2:
    ans = base
else:

    ans = [[0]*(1<<n) for i in range(1<<n)]

    last = 0
    size = (1<<n)//4
    for i in range(size):
        for j in range(size):
            x = i*4
            y = j*4
            if i != j:    
                for a in range(4):
                    for b in range(4):
                        ans[x+a][y+b] = last+a*4+b
            else:
                for a in range(4):
                    for b in range(4):
                        ans[x+a][y+b] = last+base[a][b]
            last += 16

for i in ans:
    print(*i)

0