結果

問題 No.2212 One XOR Matrix
ユーザー 👑 NachiaNachia
提出日時 2023-02-10 23:15:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 98 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 87,144 KB
実行使用メモリ 78,108 KB
最終ジャッジ日時 2023-09-22 00:19:06
合計ジャッジ時間 4,097 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,592 KB
testcase_01 WA -
testcase_02 AC 74 ms
71,416 KB
testcase_03 AC 75 ms
71,244 KB
testcase_04 AC 79 ms
75,784 KB
testcase_05 AC 88 ms
76,684 KB
testcase_06 AC 91 ms
76,684 KB
testcase_07 AC 98 ms
77,420 KB
testcase_08 AC 120 ms
77,172 KB
testcase_09 AC 196 ms
78,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for i in range(2**n):print(*[(i^j)*2**n+i^(1 if i==j else 0) for j in range(2**n)])
0