結果

問題 No.1863 Xor Sum 2...?
ユーザー shobonvipshobonvip
提出日時 2022-03-04 22:57:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 103,040 KB
最終ジャッジ日時 2024-07-18 21:33:12
合計ジャッジ時間 3,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,712 KB
testcase_01 AC 31 ms
51,840 KB
testcase_02 AC 32 ms
51,712 KB
testcase_03 AC 32 ms
51,840 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 51 ms
70,032 KB
testcase_06 AC 43 ms
64,512 KB
testcase_07 AC 59 ms
75,904 KB
testcase_08 AC 68 ms
75,392 KB
testcase_09 AC 109 ms
99,328 KB
testcase_10 AC 98 ms
96,384 KB
testcase_11 AC 78 ms
81,408 KB
testcase_12 AC 67 ms
75,136 KB
testcase_13 AC 92 ms
91,264 KB
testcase_14 AC 102 ms
96,256 KB
testcase_15 AC 92 ms
90,624 KB
testcase_16 AC 95 ms
90,624 KB
testcase_17 AC 71 ms
77,440 KB
testcase_18 AC 58 ms
67,840 KB
testcase_19 AC 67 ms
73,856 KB
testcase_20 AC 81 ms
84,352 KB
testcase_21 AC 90 ms
93,312 KB
testcase_22 AC 59 ms
72,448 KB
testcase_23 AC 101 ms
99,968 KB
testcase_24 AC 108 ms
102,784 KB
testcase_25 AC 108 ms
102,784 KB
testcase_26 AC 108 ms
102,784 KB
testcase_27 AC 108 ms
103,040 KB
testcase_28 AC 107 ms
102,656 KB
testcase_29 AC 111 ms
103,040 KB
testcase_30 AC 115 ms
102,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0

for i in range(n):
	tmp1 = 0
	tmp2 = 0
	tmp3 = 0
	for j in range(32):
		if i + j < n:
			tmp1 += a[i + j]
			tmp2 ^= a[i + j]
			tmp3 ^= b[i + j]
			if tmp1 - tmp2 == tmp3:
				ans += 1


print(ans)
0