結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー fmhrfmhr
提出日時 2015-04-17 14:28:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,535 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,548 KB
最終ジャッジ日時 2024-07-04 11:28:47
合計ジャッジ時間 43,209 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 1,768 ms
18,564 KB
testcase_09 AC 395 ms
12,440 KB
testcase_10 AC 1,360 ms
17,044 KB
testcase_11 AC 987 ms
15,284 KB
testcase_12 AC 2,167 ms
20,104 KB
testcase_13 AC 2,266 ms
21,484 KB
testcase_14 AC 1,282 ms
16,396 KB
testcase_15 AC 2,405 ms
21,544 KB
testcase_16 AC 1,985 ms
19,972 KB
testcase_17 AC 2,219 ms
20,464 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 89 ms
12,616 KB
testcase_21 AC 2,535 ms
21,900 KB
testcase_22 AC 2,475 ms
21,900 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 32 ms
10,752 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 1,505 ms
18,072 KB
testcase_29 AC 2,062 ms
20,344 KB
testcase_30 AC 1,898 ms
19,292 KB
testcase_31 AC 1,526 ms
18,244 KB
testcase_32 AC 1,913 ms
20,048 KB
testcase_33 AC 2,463 ms
22,304 KB
testcase_34 AC 2,396 ms
22,224 KB
testcase_35 AC 2,477 ms
21,968 KB
testcase_36 AC 2,434 ms
22,548 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