結果

問題 No.2442 線形写像
ユーザー 👑 KazunKazun
提出日時 2023-08-26 00:53:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,376 KB
最終ジャッジ日時 2024-06-07 07:36:52
合計ジャッジ時間 2,795 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 37 ms
52,000 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 44 ms
60,032 KB
testcase_11 AC 46 ms
61,992 KB
testcase_12 AC 47 ms
62,080 KB
testcase_13 AC 49 ms
61,824 KB
testcase_14 AC 49 ms
61,952 KB
testcase_15 AC 96 ms
76,800 KB
testcase_16 AC 95 ms
76,672 KB
testcase_17 AC 203 ms
83,376 KB
testcase_18 AC 140 ms
77,156 KB
testcase_19 AC 140 ms
77,464 KB
testcase_20 AC 141 ms
77,432 KB
testcase_21 AC 206 ms
83,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N = int(input())

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

    bit = lambda S, k : (S >> k) & 1
    def xor_sum(S):
        xor = 0
        for j in range(N):
            if bit(S, j):
                xor ^= A[1 << j]
        return xor

    return all(A[S] == xor_sum(S) for S in range(1 << N))

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

print("Yes" if solve() else "No")
0