結果

問題 No.2212 One XOR Matrix
ユーザー titiatitia
提出日時 2023-02-11 00:52:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 508 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-07-07 18:16:09
合計ジャッジ時間 3,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 41 ms
11,520 KB
testcase_07 AC 90 ms
13,568 KB
testcase_08 AC 309 ms
21,632 KB
testcase_09 AC 1,148 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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

for b in range(N-2):
    B=[[-1]*(len(A)*2) for i in range(len(A)*2)]

    for i in range(len(A)):
        for j in range(len(A)):
            B[i][j]=A[i][j]
            B[i+len(A)][j]=(i*len(A)+j)|(1<<(b*2+4))
            B[i][j+len(A)]=(i*len(A)+j)|(1<<(b*2+5))
            B[i+len(A)][j+len(A)]=A[i][j]|(1<<(b*2+4))|(1<<(b*2+5))

    A=B

for b in B:
    print(*b)
0