結果

問題 No.1863 Xor Sum 2...?
ユーザー puznekopuzneko
提出日時 2022-04-08 00:21:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 1,166 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 112,180 KB
最終ジャッジ日時 2024-11-28 02:42:04
合計ジャッジ時間 7,690 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 110 ms
80,128 KB
testcase_06 AC 97 ms
78,592 KB
testcase_07 AC 133 ms
86,912 KB
testcase_08 AC 133 ms
87,040 KB
testcase_09 AC 215 ms
104,104 KB
testcase_10 AC 206 ms
102,668 KB
testcase_11 AC 148 ms
88,272 KB
testcase_12 AC 135 ms
86,528 KB
testcase_13 AC 180 ms
96,552 KB
testcase_14 AC 208 ms
102,404 KB
testcase_15 AC 178 ms
96,804 KB
testcase_16 AC 186 ms
96,008 KB
testcase_17 AC 142 ms
87,936 KB
testcase_18 AC 105 ms
79,872 KB
testcase_19 AC 130 ms
86,400 KB
testcase_20 AC 161 ms
93,260 KB
testcase_21 AC 201 ms
100,376 KB
testcase_22 AC 129 ms
84,864 KB
testcase_23 AC 240 ms
108,072 KB
testcase_24 AC 251 ms
110,456 KB
testcase_25 AC 256 ms
111,688 KB
testcase_26 AC 256 ms
112,180 KB
testcase_27 AC 255 ms
111,944 KB
testcase_28 AC 255 ms
112,056 KB
testcase_29 AC 254 ms
112,064 KB
testcase_30 AC 258 ms
111,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n = int(stdin.readline().rstrip())
a = [int(x) for x in stdin.readline().rstrip().split()]
b = [int(x) for x in stdin.readline().rstrip().split()]

bitruiseki = [[0 for i in range(30)] for j in range(n+1)]
for i in range(n):
    val = a[i]
    for j in range(30):
        if val & 1:
            bitruiseki[i+1][j] = bitruiseki[i][j] + 1
        else:
            bitruiseki[i+1][j] = bitruiseki[i][j]
        val = val >> 1

bxor = [0 for i in range(n+1)]
for i in range(n):
    bxor[i+1] = bxor[i] ^ b[i]

bxornum = [0 for i in range(n+1)]
for i in range(n):
    bxornum[i+1] = bxornum[i] + bxor[i]

left = 1
ans = 0
for i in range(1,n+1):
    check = False
    for j in range(30):
        if bitruiseki[i][j] - bitruiseki[left-1][j] >= 2:
            check = True
            break
    while check:
        left += 1
        check = False
        for j in range(30):
            if bitruiseki[i][j] - bitruiseki[left-1][j] >= 2:
                check = True
                break
    if bxor[i] == 1:
        ans += bxornum[i] - bxornum[left-1]
    else:
        ans += i - left + 1 - (bxornum[i] - bxornum[left-1])

print("{}".format(ans))
0