結果

問題 No.1863 Xor Sum 2...?
ユーザー ShirotsumeShirotsume
提出日時 2022-03-05 16:13:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 695 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 102,656 KB
最終ジャッジ日時 2024-07-19 21:04:35
合計ジャッジ時間 12,905 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 176 ms
77,440 KB
testcase_06 AC 113 ms
76,032 KB
testcase_07 AC 252 ms
81,024 KB
testcase_08 AC 260 ms
81,024 KB
testcase_09 AC 550 ms
99,200 KB
testcase_10 AC 506 ms
96,128 KB
testcase_11 AC 312 ms
84,736 KB
testcase_12 AC 245 ms
80,896 KB
testcase_13 AC 433 ms
90,624 KB
testcase_14 AC 511 ms
96,000 KB
testcase_15 AC 430 ms
90,368 KB
testcase_16 AC 432 ms
91,008 KB
testcase_17 AC 270 ms
82,048 KB
testcase_18 AC 152 ms
76,288 KB
testcase_19 AC 229 ms
79,872 KB
testcase_20 AC 341 ms
86,272 KB
testcase_21 AC 477 ms
93,568 KB
testcase_22 AC 202 ms
78,848 KB
testcase_23 AC 578 ms
99,584 KB
testcase_24 AC 670 ms
102,656 KB
testcase_25 AC 695 ms
102,144 KB
testcase_26 AC 683 ms
102,272 KB
testcase_27 AC 679 ms
102,400 KB
testcase_28 AC 682 ms
102,400 KB
testcase_29 AC 660 ms
102,144 KB
testcase_30 AC 672 ms
102,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
cnt = 0
for l in range(1, 40):
    for i in range(n - l + 1):
        x = a[i:i + l]
        y = b[i:i + l]
        n1 = 0
        n2 = 0
        n3 = 0
        for v in x:
            n1 += v
            n2 ^= v
        for v in y:
            n3 ^= v
        if n1 - n2 == n3: cnt += 1
print(cnt)
0