結果

問題 No.1863 Xor Sum 2...?
ユーザー NaHCO314NaHCO314
提出日時 2022-03-04 21:01:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 103,040 KB
最終ジャッジ日時 2024-07-18 18:28:11
合計ジャッジ時間 4,439 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 57 ms
69,632 KB
testcase_06 AC 50 ms
64,512 KB
testcase_07 AC 62 ms
74,240 KB
testcase_08 AC 61 ms
74,624 KB
testcase_09 AC 87 ms
99,712 KB
testcase_10 AC 79 ms
94,848 KB
testcase_11 AC 68 ms
80,128 KB
testcase_12 AC 60 ms
73,984 KB
testcase_13 AC 73 ms
88,192 KB
testcase_14 AC 80 ms
94,720 KB
testcase_15 AC 72 ms
87,808 KB
testcase_16 AC 76 ms
87,680 KB
testcase_17 AC 65 ms
76,160 KB
testcase_18 AC 57 ms
67,584 KB
testcase_19 AC 60 ms
72,960 KB
testcase_20 AC 72 ms
82,432 KB
testcase_21 AC 76 ms
90,880 KB
testcase_22 AC 57 ms
71,808 KB
testcase_23 AC 87 ms
99,840 KB
testcase_24 AC 91 ms
102,400 KB
testcase_25 AC 91 ms
102,400 KB
testcase_26 AC 91 ms
103,040 KB
testcase_27 AC 93 ms
102,528 KB
testcase_28 AC 94 ms
102,528 KB
testcase_29 AC 95 ms
102,656 KB
testcase_30 AC 93 ms
102,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

max_a = max(a).bit_length()
ans = 0

for i in range(n):
    a_r = b_r = 0
    for j in range(i, min(n, i+max_a)):
        if a_r & a[j] != 0:
            break
        else:
            a_r |= a[j]
            b_r ^= b[j]
            if b_r == 0:
                ans += 1

print(ans)
0