結果

問題 No.2212 One XOR Matrix
ユーザー tassei903tassei903
提出日時 2023-02-11 02:28:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 85,376 KB
最終ジャッジ日時 2024-07-07 19:22:16
合計ジャッジ時間 2,822 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 48 ms
58,624 KB
testcase_05 AC 56 ms
62,080 KB
testcase_06 AC 60 ms
65,664 KB
testcase_07 AC 78 ms
76,800 KB
testcase_08 AC 102 ms
77,952 KB
testcase_09 AC 218 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n = ni()
if n == 1:
    print(-1)
    exit()
a = [[0] * (1<<n) for i in range(1<<n)]

for i in range(1<<n):
    for j in range(1<<n):
        a[(i+j)%(1<<n)][j] = i * (1<<n) + j

for i in range(1<<n-1):
    a[i*2][i*2], a[i*2+1][i*2+1] = a[i*2+1][i*2+1], a[i*2][i*2]


for i in a:
    print(*i)

0