結果

問題 No.2212 One XOR Matrix
ユーザー 👑 NachiaNachia
提出日時 2023-02-10 23:15:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 98 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-07-07 17:13:43
合計ジャッジ時間 2,980 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 40 ms
58,496 KB
testcase_05 AC 46 ms
62,336 KB
testcase_06 AC 49 ms
65,792 KB
testcase_07 AC 61 ms
76,168 KB
testcase_08 AC 76 ms
76,416 KB
testcase_09 AC 140 ms
76,800 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