結果

問題 No.1142 XOR と XOR
ユーザー tyawanmusityawanmusi
提出日時 2020-06-27 16:30:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 649 ms / 2,000 ms
コード長 972 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 37,260 KB
最終ジャッジ日時 2024-11-08 03:19:59
合計ジャッジ時間 14,755 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
10,496 KB
testcase_01 AC 293 ms
10,752 KB
testcase_02 AC 295 ms
10,752 KB
testcase_03 AC 559 ms
37,260 KB
testcase_04 AC 577 ms
28,104 KB
testcase_05 AC 545 ms
25,548 KB
testcase_06 AC 610 ms
31,416 KB
testcase_07 AC 504 ms
16,360 KB
testcase_08 AC 643 ms
34,800 KB
testcase_09 AC 643 ms
34,880 KB
testcase_10 AC 649 ms
34,820 KB
testcase_11 AC 295 ms
10,496 KB
testcase_12 AC 300 ms
10,752 KB
testcase_13 AC 297 ms
10,496 KB
testcase_14 AC 489 ms
27,016 KB
testcase_15 AC 475 ms
25,576 KB
testcase_16 AC 339 ms
11,776 KB
testcase_17 AC 452 ms
15,604 KB
testcase_18 AC 327 ms
12,160 KB
testcase_19 AC 573 ms
31,104 KB
testcase_20 AC 505 ms
25,840 KB
testcase_21 AC 449 ms
21,500 KB
testcase_22 AC 408 ms
14,972 KB
testcase_23 AC 570 ms
29,736 KB
testcase_24 AC 589 ms
31,068 KB
testcase_25 AC 411 ms
21,220 KB
testcase_26 AC 507 ms
33,992 KB
testcase_27 AC 461 ms
23,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Tester解

# 入力
n, m, k = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

# 累積xor
for i in range(1, n):
  a[i] ^= a[i - 1]
for j in range(1, m):
  b[j] ^= b[j - 1]

# なんかうまくカウントするアレ
a1 = [0] * 1024
b1 = [0] * 1024
for x in a:
  a1[x] += 1
for y in b:
  b1[y] += 1

# 全探索パート
# i == j のときは重複して数えないように場合分け
a2 = [0] * 1024
b2 = [0] * 1024
for i in range(1024):
  for j in range(i, 1024):
    if i == j:
      a2[i ^ j] += a1[i] * (a1[j] - 1) // 2
      b2[i ^ j] += b1[i] * (b1[j] - 1) // 2
    else:
      a2[i ^ j] += a1[i] * a1[j]
      b2[i ^ j] += b1[i] * b1[j]

# 最後の計算
# a1_i + a2_i が i を作る (n, u) の総数
# b1_j + b2_j が j を作る (l1, l2) の総数
# i を全探索して求める
ans = 0
for i in range(1024):
  j = k ^ i
  ans += (a1[i] + a2[i]) * (b1[j] + b2[j])
  ans %= 10**9+7

# 出力
print(ans)
0