結果

問題 No.1863 Xor Sum 2...?
ユーザー shiomusubi496shiomusubi496
提出日時 2022-02-25 19:54:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,660 KB
最終ジャッジ日時 2024-07-18 18:11:15
合計ジャッジ時間 3,072 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 33 ms
51,712 KB
testcase_02 AC 32 ms
51,712 KB
testcase_03 AC 31 ms
51,712 KB
testcase_04 AC 31 ms
51,968 KB
testcase_05 AC 44 ms
69,632 KB
testcase_06 AC 41 ms
64,640 KB
testcase_07 AC 53 ms
74,624 KB
testcase_08 AC 49 ms
75,008 KB
testcase_09 AC 75 ms
99,328 KB
testcase_10 AC 74 ms
95,104 KB
testcase_11 AC 57 ms
80,116 KB
testcase_12 AC 50 ms
74,112 KB
testcase_13 AC 61 ms
88,064 KB
testcase_14 AC 67 ms
94,464 KB
testcase_15 AC 61 ms
88,056 KB
testcase_16 AC 62 ms
87,808 KB
testcase_17 AC 51 ms
76,032 KB
testcase_18 AC 43 ms
67,712 KB
testcase_19 AC 48 ms
73,088 KB
testcase_20 AC 55 ms
82,432 KB
testcase_21 AC 64 ms
91,436 KB
testcase_22 AC 47 ms
71,424 KB
testcase_23 AC 75 ms
100,224 KB
testcase_24 AC 79 ms
102,444 KB
testcase_25 AC 77 ms
102,656 KB
testcase_26 AC 79 ms
102,528 KB
testcase_27 AC 80 ms
102,656 KB
testcase_28 AC 79 ms
102,528 KB
testcase_29 AC 82 ms
102,660 KB
testcase_30 AC 85 ms
102,576 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