結果

問題 No.1863 Xor Sum 2...?
ユーザー puznekopuzneko
提出日時 2022-04-08 00:21:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 1,166 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 111,920 KB
最終ジャッジ日時 2024-05-06 00:55:11
合計ジャッジ時間 6,545 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 100 ms
80,456 KB
testcase_06 AC 84 ms
78,848 KB
testcase_07 AC 119 ms
87,168 KB
testcase_08 AC 117 ms
87,228 KB
testcase_09 AC 191 ms
104,588 KB
testcase_10 AC 186 ms
102,800 KB
testcase_11 AC 135 ms
88,284 KB
testcase_12 AC 114 ms
87,104 KB
testcase_13 AC 160 ms
96,680 KB
testcase_14 AC 187 ms
102,468 KB
testcase_15 AC 156 ms
96,556 KB
testcase_16 AC 167 ms
96,652 KB
testcase_17 AC 119 ms
88,576 KB
testcase_18 AC 93 ms
79,848 KB
testcase_19 AC 114 ms
86,488 KB
testcase_20 AC 142 ms
93,120 KB
testcase_21 AC 168 ms
100,368 KB
testcase_22 AC 105 ms
84,788 KB
testcase_23 AC 202 ms
108,328 KB
testcase_24 AC 204 ms
110,124 KB
testcase_25 AC 214 ms
111,804 KB
testcase_26 AC 212 ms
111,804 KB
testcase_27 AC 212 ms
111,920 KB
testcase_28 AC 216 ms
111,724 KB
testcase_29 AC 210 ms
111,748 KB
testcase_30 AC 216 ms
111,684 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