結果
問題 | No.1142 XOR と XOR |
ユーザー | stng |
提出日時 | 2022-09-05 21:38:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 927 bytes |
コンパイル時間 | 308 ms |
コンパイル使用メモリ | 82,328 KB |
実行使用メモリ | 107,180 KB |
最終ジャッジ日時 | 2024-04-30 23:46:59 |
合計ジャッジ時間 | 4,912 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
68,424 KB |
testcase_01 | AC | 43 ms
63,192 KB |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
n,m,k = map(int,input().split()) a = [int(i) for i in input().split()] b = [int(i) for i in input().split()] mod = 10**9+7 ngs = 1024#1024 arui = [0]*(ngs) arui[0] = 1 ali = [0]*(ngs) for i in range(n): narui = [0]*ngs narui[0] = 1 for j in range(ngs): narui[j^a[i]] += arui[j] narui[j^a[i]] %= mod arui = narui[:] for j in range(ngs): if j == 0: ali[j] += arui[j]-1 else: ali[j] += arui[j] ali[j] %= mod brui = [0]*(ngs) brui[0] = 1 bli = [0]*(ngs) for i in range(n): nbrui = [0]*ngs nbrui[0] = 1 for j in range(ngs): nbrui[j^b[i]] += brui[j] nbrui[j^b[i]] %= mod brui = nbrui[:] for j in range(ngs): if j == 0: bli[j] += brui[j]-1 else: bli[j] += brui[j] bli[j] %= mod ans = 0 for i in range(ngs): ans += ali[i]*bli[i^k] ans %= mod print(ans)