結果

問題 No.1958 Bit Game
ユーザー rlangevinrlangevin
提出日時 2023-11-01 12:24:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 143,948 KB
最終ジャッジ日時 2024-09-25 17:55:21
合計ジャッジ時間 10,941 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
143,656 KB
testcase_01 AC 298 ms
143,652 KB
testcase_02 AC 306 ms
143,568 KB
testcase_03 AC 299 ms
143,948 KB
testcase_04 AC 297 ms
143,676 KB
testcase_05 AC 299 ms
143,832 KB
testcase_06 AC 300 ms
143,944 KB
testcase_07 AC 301 ms
143,704 KB
testcase_08 AC 303 ms
143,616 KB
testcase_09 AC 303 ms
143,620 KB
testcase_10 AC 114 ms
87,040 KB
testcase_11 AC 170 ms
107,520 KB
testcase_12 AC 184 ms
107,488 KB
testcase_13 AC 196 ms
104,716 KB
testcase_14 AC 187 ms
105,856 KB
testcase_15 AC 176 ms
110,644 KB
testcase_16 AC 135 ms
104,512 KB
testcase_17 AC 253 ms
113,504 KB
testcase_18 AC 235 ms
114,760 KB
testcase_19 AC 160 ms
111,408 KB
testcase_20 AC 215 ms
103,808 KB
testcase_21 AC 195 ms
114,632 KB
testcase_22 AC 134 ms
85,760 KB
testcase_23 AC 125 ms
102,400 KB
testcase_24 AC 243 ms
113,008 KB
testcase_25 AC 143 ms
105,180 KB
testcase_26 AC 203 ms
108,840 KB
testcase_27 AC 165 ms
106,880 KB
testcase_28 AC 228 ms
103,636 KB
testcase_29 AC 142 ms
96,864 KB
testcase_30 AC 38 ms
52,224 KB
testcase_31 AC 39 ms
52,608 KB
testcase_32 AC 46 ms
58,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
mod = 998244353

def solve(a0, a1, b0, b1, v):
    pre0, pre1 = 1, 0
    for i in range(2 * N):
        if i % 2 == 0:
            dp0 = a0 * pre0
            dp1 = a1 * pre0 + (a0 + a1) * pre1
        else:
            dp0 = (b0 + b1) * pre0 + b0 * pre1
            dp1 = b1 * pre1
        pre0 = dp0 % mod
        pre1 = dp1 % mod
    return pre1 * v % mod

ans = 0
v = 1
for i in range(25):
    a, b = [0] * 2, [0] * 2
    for j in range(X):
        a[(A[j] >> i) & 1] += 1
    for j in range(Y):
        b[(B[j] >> i) & 1] += 1
    ans += solve(a[0], a[1], b[0], b[1], v)
    ans %= mod
    v *= 2
    v %= mod

print(ans)
0