結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 570 ms
18,508 KB
testcase_09 AC 142 ms
12,244 KB
testcase_10 AC 445 ms
16,804 KB
testcase_11 AC 335 ms
14,964 KB
testcase_12 AC 649 ms
20,496 KB
testcase_13 AC 705 ms
21,184 KB
testcase_14 AC 436 ms
16,460 KB
testcase_15 AC 777 ms
21,480 KB
testcase_16 AC 661 ms
20,044 KB
testcase_17 AC 682 ms
20,404 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 28 ms
10,496 KB
testcase_20 AC 61 ms
12,476 KB
testcase_21 AC 797 ms
21,708 KB
testcase_22 AC 792 ms
21,712 KB
testcase_23 AC 28 ms
10,496 KB
testcase_24 AC 27 ms
10,496 KB
testcase_25 AC 27 ms
10,624 KB
testcase_26 AC 29 ms
10,496 KB
testcase_27 AC 28 ms
10,752 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 785 ms
21,932 KB
testcase_34 AC 745 ms
21,864 KB
testcase_35 AC 796 ms
21,908 KB
testcase_36 AC 774 ms
21,908 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] ^= h

    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