結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー しらっ亭しらっ亭
提出日時 2015-07-22 01:05:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 854 ms / 5,000 ms
コード長 1,038 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,032 KB
最終ジャッジ日時 2024-07-04 12:00:42
合計ジャッジ時間 15,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 34 ms
10,624 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 34 ms
10,496 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 618 ms
18,368 KB
testcase_09 AC 151 ms
12,116 KB
testcase_10 AC 471 ms
16,548 KB
testcase_11 AC 342 ms
14,960 KB
testcase_12 AC 713 ms
20,496 KB
testcase_13 AC 760 ms
21,176 KB
testcase_14 AC 449 ms
16,200 KB
testcase_15 AC 823 ms
21,480 KB
testcase_16 AC 690 ms
19,788 KB
testcase_17 AC 744 ms
20,276 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 66 ms
12,476 KB
testcase_21 AC 854 ms
21,708 KB
testcase_22 AC 853 ms
21,712 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 31 ms
10,624 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 31 ms
10,496 KB
testcase_28 AC 527 ms
17,368 KB
testcase_29 AC 723 ms
20,156 KB
testcase_30 AC 630 ms
19,204 KB
testcase_31 AC 525 ms
18,020 KB
testcase_32 AC 660 ms
19,860 KB
testcase_33 AC 826 ms
21,800 KB
testcase_34 AC 821 ms
21,736 KB
testcase_35 AC 845 ms
21,776 KB
testcase_36 AC 836 ms
22,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N = int(input())
    A = list(map(int, input().split()))

    for i in range(N):
        a = A[i]
        if a:
            h = 1 << highest(a)
            for j in range(i + 1, N):
                if A[j] & h:
                    A[j] ^= a

    print(1 << sum(1 for a in A if a))


def main():
    solve()


def bitcount(x):
    """
    立っているbitの数
    """
    x = (x & 0x5555555555555555) + (x >> 1 & 0x5555555555555555)
    x = (x & 0x3333333333333333) + (x >> 2 & 0x3333333333333333)
    x = (x & 0x0f0f0f0f0f0f0f0f) + (x >> 4 & 0x0f0f0f0f0f0f0f0f)
    x = (x & 0x00ff00ff00ff00ff) + (x >> 8 & 0x00ff00ff00ff00ff)
    x = (x & 0x0000ffff0000ffff) + (x >> 16 & 0x0000ffff0000ffff)
    return (x & 0x00000000ffffffff) + (x >> 32 & 0x00000000ffffffff)


def highest(x):
    """
    一番左の立っているbitの位置
    """
    x |= (x >> 1)
    x |= (x >> 2)
    x |= (x >> 4)
    x |= (x >> 8)
    x |= (x >> 16)
    x |= (x >> 32)
    return bitcount(x) - 1


if __name__ == '__main__':
    main()
0