結果

問題 No.2442 線形写像
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-08-25 22:11:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-06-07 07:34:42
合計ジャッジ時間 3,349 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 45 ms
52,096 KB
testcase_06 AC 46 ms
51,584 KB
testcase_07 AC 44 ms
51,968 KB
testcase_08 AC 44 ms
52,096 KB
testcase_09 AC 45 ms
52,608 KB
testcase_10 AC 60 ms
60,800 KB
testcase_11 AC 74 ms
64,128 KB
testcase_12 AC 73 ms
64,384 KB
testcase_13 AC 74 ms
64,384 KB
testcase_14 AC 74 ms
64,000 KB
testcase_15 AC 134 ms
76,800 KB
testcase_16 AC 135 ms
76,928 KB
testcase_17 AC 243 ms
85,888 KB
testcase_18 AC 172 ms
77,056 KB
testcase_19 AC 185 ms
77,184 KB
testcase_20 AC 179 ms
77,312 KB
testcase_21 AC 246 ms
86,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(x):
    '''xの立っているビット数をカウントする関数
    (xは64bit整数)'''

    # 2bitごとの組に分け、立っているビット数を2bitで表現する
    x = x - ((x >> 1) & 0x5555555555555555)

    # 4bit整数に 上位2bit + 下位2bit を計算した値を入れる
    x = (x & 0x3333333333333333) + ((x >> 2) & 0x3333333333333333)

    x = (x + (x >> 4)) & 0x0f0f0f0f0f0f0f0f  # 8bitごと
    x = x + (x >> 8)  # 16bitごと
    x = x + (x >> 16)  # 32bitごと
    x = x + (x >> 32)  # 64bitごと = 全部の合計
    return x & 0x0000007f


N = int(input())
A = [int(input()) for _ in range(1 << N)]
ans = 'Yes'
if A[0] != 0:
    exit(print('No'))
for i in range(1, 1 << N):
    if popcount(i) > 1:
        tmp = 0
        for j in range(N):
            if i & (1 << j):
                tmp ^= A[(1 << j)]
        if tmp != A[i]:
            ans = 'No'
print(ans)
0