結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー tora3kuma3tora3kuma3
提出日時 2015-04-18 10:57:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 390 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 91,592 KB
最終ジャッジ日時 2024-07-04 11:36:19
合計ジャッジ時間 4,777 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,632 KB
testcase_01 AC 37 ms
53,348 KB
testcase_02 AC 39 ms
53,572 KB
testcase_03 AC 37 ms
52,760 KB
testcase_04 AC 37 ms
52,180 KB
testcase_05 AC 39 ms
52,284 KB
testcase_06 AC 36 ms
52,684 KB
testcase_07 AC 36 ms
52,356 KB
testcase_08 AC 106 ms
82,980 KB
testcase_09 AC 53 ms
65,024 KB
testcase_10 AC 88 ms
77,664 KB
testcase_11 AC 78 ms
72,880 KB
testcase_12 AC 114 ms
86,996 KB
testcase_13 AC 118 ms
88,288 KB
testcase_14 AC 86 ms
76,820 KB
testcase_15 AC 137 ms
90,876 KB
testcase_16 AC 113 ms
85,020 KB
testcase_17 AC 117 ms
89,844 KB
testcase_18 AC 39 ms
58,036 KB
testcase_19 AC 37 ms
52,332 KB
testcase_20 AC 56 ms
77,608 KB
testcase_21 AC 136 ms
91,592 KB
testcase_22 AC 130 ms
91,524 KB
testcase_23 AC 37 ms
52,348 KB
testcase_24 AC 35 ms
52,772 KB
testcase_25 AC 38 ms
53,256 KB
testcase_26 AC 36 ms
52,592 KB
testcase_27 AC 35 ms
51,876 KB
testcase_28 AC 93 ms
79,180 KB
testcase_29 AC 117 ms
88,412 KB
testcase_30 AC 107 ms
84,792 KB
testcase_31 AC 97 ms
81,488 KB
testcase_32 AC 112 ms
86,260 KB
testcase_33 AC 131 ms
90,892 KB
testcase_34 AC 133 ms
90,992 KB
testcase_35 AC 130 ms
91,556 KB
testcase_36 AC 130 ms
91,184 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