結果

問題 No.2442 線形写像
ユーザー NullzNullz
提出日時 2023-11-09 04:41:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,272 KB
最終ジャッジ日時 2024-09-26 00:02:21
合計ジャッジ時間 3,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 45 ms
51,584 KB
testcase_02 AC 44 ms
51,584 KB
testcase_03 AC 42 ms
51,456 KB
testcase_04 AC 42 ms
51,456 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 47 ms
51,584 KB
testcase_07 AC 49 ms
51,584 KB
testcase_08 AC 49 ms
52,096 KB
testcase_09 AC 50 ms
52,352 KB
testcase_10 AC 53 ms
60,032 KB
testcase_11 AC 66 ms
63,616 KB
testcase_12 AC 65 ms
63,488 KB
testcase_13 AC 65 ms
63,744 KB
testcase_14 AC 65 ms
63,488 KB
testcase_15 AC 126 ms
76,672 KB
testcase_16 AC 123 ms
76,672 KB
testcase_17 AC 252 ms
86,272 KB
testcase_18 AC 175 ms
77,056 KB
testcase_19 AC 174 ms
77,312 KB
testcase_20 AC 174 ms
77,312 KB
testcase_21 AC 248 ms
86,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(input()) for _ in range(1 << n)]
for i in range(1 << n):
    v = 0
    for j in range(n):
        if i & (1 << j):
            v ^= a[1 << j]
    if v != a[i]:
        print('No')
        break
else:
    print('Yes')
0