結果

問題 No.1958 Bit Game
ユーザー lloyzlloyz
提出日時 2023-10-04 00:02:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 142,340 KB
最終ジャッジ日時 2024-07-26 14:14:23
合計ジャッジ時間 13,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 423 ms
142,004 KB
testcase_01 AC 438 ms
141,936 KB
testcase_02 AC 421 ms
142,016 KB
testcase_03 AC 417 ms
142,008 KB
testcase_04 AC 423 ms
141,888 KB
testcase_05 AC 416 ms
142,188 KB
testcase_06 AC 419 ms
142,340 KB
testcase_07 AC 420 ms
141,948 KB
testcase_08 AC 418 ms
142,168 KB
testcase_09 AC 411 ms
142,024 KB
testcase_10 AC 154 ms
89,216 KB
testcase_11 AC 230 ms
105,472 KB
testcase_12 AC 251 ms
112,208 KB
testcase_13 AC 272 ms
106,116 KB
testcase_14 AC 257 ms
104,020 KB
testcase_15 AC 223 ms
109,288 KB
testcase_16 AC 169 ms
102,400 KB
testcase_17 AC 353 ms
112,412 KB
testcase_18 AC 324 ms
113,280 KB
testcase_19 AC 205 ms
109,440 KB
testcase_20 AC 306 ms
102,384 KB
testcase_21 AC 261 ms
112,896 KB
testcase_22 AC 195 ms
89,452 KB
testcase_23 AC 159 ms
100,656 KB
testcase_24 AC 354 ms
120,144 KB
testcase_25 AC 196 ms
104,048 KB
testcase_26 AC 284 ms
107,392 KB
testcase_27 AC 210 ms
105,224 KB
testcase_28 AC 333 ms
107,368 KB
testcase_29 AC 198 ms
98,416 KB
testcase_30 AC 35 ms
52,224 KB
testcase_31 AC 36 ms
52,224 KB
testcase_32 AC 45 ms
62,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n, x, y = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
mod = 998244353
Pow2 = [pow(2, i, mod) for i in range(18)]

ans = 0
for i in range(18):
    nA = [0, 0]
    nB = [0, 0]
    for j in range(x):
        if (A[j] >> i) & 1:
            nA[1] += 1
        else:
            nA[0] += 1
    for j in range(y):
        if (B[j] >> i) & 1:
            nB[1] += 1
        else:
            nB[0] += 1
    DP = [1, 0]
    for j in range(n):
        NDP = [0, 0]
        NDP[0] = DP[0] * nA[0] % mod
        NDP[1] = (DP[0] * nA[1] + DP[1] * x) % mod
        DP = NDP[:]
        NDP = [0, 0]
        NDP[0] = (DP[0] * y + DP[1] * nB[0]) % mod
        NDP[1] = DP[1] * nB[1] % mod
        DP = NDP[:]
    ans += Pow2[i] * DP[1] % mod
    ans %= mod
print(ans)
0