結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
10,880 KB
testcase_01 AC 293 ms
10,752 KB
testcase_02 AC 292 ms
10,752 KB
testcase_03 AC 562 ms
37,372 KB
testcase_04 AC 571 ms
27,996 KB
testcase_05 AC 537 ms
25,548 KB
testcase_06 AC 589 ms
30,220 KB
testcase_07 AC 503 ms
16,492 KB
testcase_08 AC 623 ms
34,716 KB
testcase_09 AC 622 ms
34,848 KB
testcase_10 AC 649 ms
34,820 KB
testcase_11 AC 294 ms
10,752 KB
testcase_12 AC 302 ms
10,624 KB
testcase_13 AC 294 ms
10,624 KB
testcase_14 AC 479 ms
27,036 KB
testcase_15 AC 484 ms
25,580 KB
testcase_16 AC 341 ms
11,776 KB
testcase_17 AC 447 ms
15,612 KB
testcase_18 AC 334 ms
12,024 KB
testcase_19 AC 593 ms
30,856 KB
testcase_20 AC 498 ms
25,960 KB
testcase_21 AC 439 ms
21,500 KB
testcase_22 AC 413 ms
14,848 KB
testcase_23 AC 563 ms
29,744 KB
testcase_24 AC 581 ms
31,040 KB
testcase_25 AC 413 ms
21,480 KB
testcase_26 AC 510 ms
33,876 KB
testcase_27 AC 449 ms
22,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
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
a2=[0]*1024
b2=[0]*1024
for x in a:a1[x]+=1
for y in b:b1[y]+=1
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]
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