結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー tora3kuma3tora3kuma3
提出日時 2015-04-18 10:51:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 809 ms / 5,000 ms
コード長 390 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,044 KB
最終ジャッジ日時 2024-07-04 11:07:28
合計ジャッジ時間 16,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 595 ms
18,584 KB
testcase_09 AC 145 ms
12,332 KB
testcase_10 AC 455 ms
16,628 KB
testcase_11 AC 329 ms
15,032 KB
testcase_12 AC 715 ms
19,912 KB
testcase_13 AC 736 ms
20,648 KB
testcase_14 AC 424 ms
16,540 KB
testcase_15 AC 793 ms
21,564 KB
testcase_16 AC 673 ms
19,648 KB
testcase_17 AC 712 ms
20,484 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 65 ms
12,636 KB
testcase_21 AC 809 ms
21,920 KB
testcase_22 AC 809 ms
22,044 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 28 ms
10,752 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 497 ms
17,448 KB
testcase_29 AC 692 ms
20,372 KB
testcase_30 AC 596 ms
19,156 KB
testcase_31 AC 497 ms
18,052 KB
testcase_32 AC 640 ms
19,840 KB
testcase_33 AC 781 ms
21,584 KB
testcase_34 AC 777 ms
21,512 KB
testcase_35 AC 804 ms
21,860 KB
testcase_36 AC 801 ms
21,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#fmhrさんを参考に・・・
def hihgest_one_bit(i):
    return 1 << i.bit_length() - 1

def solve(a):
    ret = 0
    for i, ai in enumerate(a):
        if ai:
            ret += 1
            x = hihgest_one_bit(ai)
            for y in range(i + 1, len(a)):
                if a[y] & x:a[y] ^= ai
    return ret

n = input()
a = list(map(int, input().split())) 

print(1 << solve(a))
0