結果
問題 | No.1142 XOR と XOR |
ユーザー | 双六 |
提出日時 | 2020-07-31 22:36:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,005 bytes |
コンパイル時間 | 290 ms |
コンパイル使用メモリ | 82,792 KB |
実行使用メモリ | 115,552 KB |
最終ジャッジ日時 | 2024-07-06 19:49:46 |
合計ジャッジ時間 | 6,184 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
76,412 KB |
testcase_01 | AC | 137 ms
76,440 KB |
testcase_02 | WA | - |
testcase_03 | AC | 206 ms
112,820 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 205 ms
115,552 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 193 ms
109,520 KB |
testcase_18 | AC | 150 ms
82,632 KB |
testcase_19 | AC | 204 ms
113,496 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 149 ms
83,452 KB |
testcase_23 | AC | 199 ms
112,048 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
import sys; input = sys.stdin.buffer.readline sys.setrecursionlimit(10**7) from collections import defaultdict con = 10 ** 9 + 7; INF = float("inf") def getlist(): return list(map(int, input().split())) #処理内容 def main(): N, M, K = getlist() A = getlist() B = getlist() Asum = defaultdict(int) Bsum = defaultdict(int) val1 = 0 val2 = 0 Asum[0] += 1 Bsum[0] += 1 for i in range(N): val1 ^= A[i] Asum[val1] += 1 for i in range(M): val2 ^= B[i] Bsum[val2] += 1 AX = defaultdict(int) BX = defaultdict(int) for i in range(1024): for j in range(i, 1024): if i == j: AX[0] += int((Asum[i] - 1) * Asum[i] // 2) else: AX[i ^ j] += Asum[i] * Asum[j] for i in range(1024): for j in range(i, 1024): if i == j: BX[0] += int((Bsum[i] - 1) * Bsum[i] // 2) else: BX[i ^ j] += Bsum[i] * Bsum[j] ans = defaultdict(int) for i in range(1024): for j in range(1024): ans[i ^ j] += AX[i] * BX[i] print(ans[K] % con) if __name__ == '__main__': main()