結果

問題 No.1863 Xor Sum 2...?
ユーザー hitonanodehitonanode
提出日時 2023-05-10 06:49:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 667 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,548 KB
最終ジャッジ日時 2024-10-03 13:00:50
合計ジャッジ時間 36,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 406 ms
13,696 KB
testcase_06 AC 187 ms
11,648 KB
testcase_07 AC 684 ms
15,096 KB
testcase_08 AC 664 ms
14,956 KB
testcase_09 AC 1,731 ms
20,980 KB
testcase_10 AC 1,625 ms
20,260 KB
testcase_11 AC 929 ms
15,936 KB
testcase_12 AC 652 ms
14,860 KB
testcase_13 AC 1,314 ms
18,372 KB
testcase_14 AC 1,602 ms
20,224 KB
testcase_15 AC 1,286 ms
18,216 KB
testcase_16 AC 1,346 ms
18,672 KB
testcase_17 AC 728 ms
15,044 KB
testcase_18 AC 322 ms
12,416 KB
testcase_19 AC 602 ms
14,828 KB
testcase_20 AC 1,021 ms
16,744 KB
testcase_21 AC 1,465 ms
19,244 KB
testcase_22 AC 535 ms
13,792 KB
testcase_23 AC 1,864 ms
21,912 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
# print(N, A, B)

lasts = [0] * 30

n0 = [0] * (N + 1)
n1 = [0] * (N + 1)

ret = 0

lim = 0

bc = 0

n0[0] = 1

for i, a in enumerate(A):
    bc ^= B[i]
    n0[i + 1] = n0[i]
    n1[i + 1] = n1[i]

    left = lim
    for d in range(30):
        if a & (1 << d):
            lim = max(lim, lasts[d] + 1)
            left = max(left, lasts[d] + 1)
            lasts[d] = i + 1

    if bc:
        ret += n1[i] - (n1[left - 2] if left > 1 else 0)
    else:
        ret += n0[i] - (n0[left - 2] if left > 1 else 0)

    n0[i + 1] += (bc == 0)
    n1[i + 1] += (bc == 1)

print(ret)
0