結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー fmhrfmhr
提出日時 2015-04-17 14:29:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 767 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 93,260 KB
最終ジャッジ日時 2024-07-04 11:24:26
合計ジャッジ時間 5,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,368 KB
testcase_01 AC 38 ms
53,128 KB
testcase_02 AC 37 ms
52,556 KB
testcase_03 AC 37 ms
52,544 KB
testcase_04 AC 36 ms
52,080 KB
testcase_05 AC 37 ms
52,328 KB
testcase_06 AC 36 ms
52,060 KB
testcase_07 AC 37 ms
52,612 KB
testcase_08 AC 175 ms
84,744 KB
testcase_09 AC 75 ms
68,020 KB
testcase_10 AC 145 ms
79,984 KB
testcase_11 AC 114 ms
75,560 KB
testcase_12 AC 187 ms
90,792 KB
testcase_13 AC 200 ms
91,128 KB
testcase_14 AC 135 ms
79,412 KB
testcase_15 AC 214 ms
92,936 KB
testcase_16 AC 181 ms
87,812 KB
testcase_17 AC 190 ms
91,080 KB
testcase_18 AC 40 ms
59,916 KB
testcase_19 AC 36 ms
52,112 KB
testcase_20 AC 58 ms
78,304 KB
testcase_21 AC 222 ms
93,232 KB
testcase_22 AC 219 ms
93,224 KB
testcase_23 AC 41 ms
59,168 KB
testcase_24 AC 39 ms
58,932 KB
testcase_25 AC 41 ms
58,008 KB
testcase_26 AC 37 ms
53,488 KB
testcase_27 AC 40 ms
58,648 KB
testcase_28 AC 145 ms
82,516 KB
testcase_29 AC 190 ms
91,140 KB
testcase_30 AC 177 ms
86,688 KB
testcase_31 AC 154 ms
84,252 KB
testcase_32 AC 179 ms
87,824 KB
testcase_33 AC 213 ms
92,924 KB
testcase_34 AC 213 ms
93,096 KB
testcase_35 AC 217 ms
93,040 KB
testcase_36 AC 223 ms
93,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ret = 0
for i in range(n):
    if a[i]:
        ret += 1
        x = 0
        while (2**(x+1)) <= a[i]:
            x += 1
        for y in range(i+1, n, 1):
            if a[y] & (2 ** x):
                a[y] ^= a[i]

print(2**ret)
0