結果

問題 No.1863 Xor Sum 2...?
ユーザー roarisroaris
提出日時 2022-03-05 00:09:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 104,912 KB
最終ジャッジ日時 2024-07-18 23:31:23
合計ジャッジ時間 3,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,452 KB
testcase_01 AC 34 ms
51,756 KB
testcase_02 AC 34 ms
52,488 KB
testcase_03 AC 35 ms
52,700 KB
testcase_04 AC 36 ms
52,020 KB
testcase_05 AC 52 ms
73,692 KB
testcase_06 AC 48 ms
68,204 KB
testcase_07 AC 61 ms
81,236 KB
testcase_08 AC 58 ms
80,780 KB
testcase_09 AC 82 ms
103,800 KB
testcase_10 AC 81 ms
104,912 KB
testcase_11 AC 65 ms
89,048 KB
testcase_12 AC 55 ms
80,484 KB
testcase_13 AC 76 ms
97,736 KB
testcase_14 AC 88 ms
100,324 KB
testcase_15 AC 80 ms
97,964 KB
testcase_16 AC 80 ms
97,660 KB
testcase_17 AC 61 ms
83,012 KB
testcase_18 AC 51 ms
72,384 KB
testcase_19 AC 58 ms
78,264 KB
testcase_20 AC 80 ms
91,612 KB
testcase_21 AC 82 ms
100,952 KB
testcase_22 AC 58 ms
77,188 KB
testcase_23 AC 90 ms
104,556 KB
testcase_24 AC 90 ms
101,756 KB
testcase_25 AC 88 ms
102,236 KB
testcase_26 AC 87 ms
101,920 KB
testcase_27 AC 87 ms
101,956 KB
testcase_28 AC 87 ms
101,748 KB
testcase_29 AC 92 ms
101,768 KB
testcase_30 AC 93 ms
101,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
S = 0
X = 0
r = 0
ans = 0
acc = [0]

for Bi in B:
    acc.append(acc[-1]^Bi)

acc_acc = [acc[0]]

for acc_i in acc[1:]:
    acc_acc.append(acc_acc[-1]+acc_i)

ans = 0

for l in range(N):
    while r<N and S+A[r]==X^A[r]:
        S += A[r]
        X ^= A[r]
        r += 1
    
    if acc[l]==0:
        ans += r-l-(acc_acc[r]-acc_acc[l])
    else:
        ans += acc_acc[r]-acc_acc[l]
    
    S -= A[l]
    X ^= A[l]

print(ans)
0