結果

問題 No.1863 Xor Sum 2...?
ユーザー titiatitia
提出日時 2022-03-07 00:20:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,960 KB
最終ジャッジ日時 2024-07-21 11:01:59
合計ジャッジ時間 7,600 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 34 ms
10,624 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 84 ms
13,312 KB
testcase_06 AC 55 ms
11,648 KB
testcase_07 AC 118 ms
15,496 KB
testcase_08 AC 117 ms
15,480 KB
testcase_09 AC 256 ms
19,656 KB
testcase_10 AC 234 ms
19,120 KB
testcase_11 AC 144 ms
15,668 KB
testcase_12 AC 111 ms
15,636 KB
testcase_13 AC 198 ms
17,708 KB
testcase_14 AC 236 ms
19,420 KB
testcase_15 AC 197 ms
17,716 KB
testcase_16 AC 205 ms
18,164 KB
testcase_17 AC 124 ms
15,436 KB
testcase_18 AC 71 ms
12,928 KB
testcase_19 AC 107 ms
14,968 KB
testcase_20 AC 159 ms
16,756 KB
testcase_21 AC 211 ms
18,312 KB
testcase_22 AC 96 ms
14,052 KB
testcase_23 AC 271 ms
21,024 KB
testcase_24 AC 291 ms
21,696 KB
testcase_25 AC 304 ms
21,892 KB
testcase_26 AC 307 ms
21,636 KB
testcase_27 AC 297 ms
21,632 KB
testcase_28 AC 302 ms
21,960 KB
testcase_29 AC 314 ms
21,752 KB
testcase_30 AC 304 ms
21,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
XOR=[0]
for b in B:
    XOR.append(XOR[-1]^b)

SA=[0]
SB=[0]

for i in range(1,N+1):
    if XOR[i]==0:
        SA.append(SA[-1]+1)
        SB.append(SB[-1])
    else:
        SA.append(SA[-1])
        SB.append(SB[-1]+1)

ANS=0
UA=0
XA=0
ind=0

for i in range(N):
    while True:
        if ind<N and UA+A[ind]==XA^A[ind]:
            UA+=A[ind]
            XA^=A[ind]
            ind+=1
        else:
            break

    #print(i,ind)

    # i から ind-1 まで。

    if XOR[i]==0:
        ANS+=SA[ind]-SA[i]
    else:
        ANS+=SB[ind]-SB[i]

    #print(ANS)

    UA-=A[i]
    XA^=A[i]

print(ANS)
0