結果

問題 No.2442 線形写像
ユーザー miya145592miya145592
提出日時 2023-08-25 22:50:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-06-07 07:35:29
合計ジャッジ時間 2,980 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 44 ms
51,968 KB
testcase_02 AC 38 ms
52,020 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 40 ms
57,472 KB
testcase_08 AC 40 ms
58,112 KB
testcase_09 AC 42 ms
58,496 KB
testcase_10 AC 46 ms
60,544 KB
testcase_11 AC 55 ms
63,872 KB
testcase_12 AC 54 ms
63,704 KB
testcase_13 AC 53 ms
63,872 KB
testcase_14 AC 54 ms
64,256 KB
testcase_15 AC 107 ms
77,056 KB
testcase_16 AC 104 ms
76,672 KB
testcase_17 AC 241 ms
86,144 KB
testcase_18 AC 166 ms
77,440 KB
testcase_19 AC 167 ms
77,372 KB
testcase_20 AC 167 ms
77,440 KB
testcase_21 AC 242 ms
86,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(input()) for _ in range(2**N)]
D = [0 for _ in range(N)]
for i in range(N):
    idx = (1<<i)
    D[i] = A[idx]

for i in range(2**N):
    tmp = 0
    for j in range(64):
        if (i>>j)&1:
            tmp ^= D[j]
    if tmp!=A[i]:
        print("No")
        exit()

print("Yes")
0