結果

問題 No.1958 Bit Game
ユーザー ShirotsumeShirotsume
提出日時 2022-05-27 22:24:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,059 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 315,708 KB
最終ジャッジ日時 2024-09-20 16:05:52
合計ジャッジ時間 7,324 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 261 ms
138,752 KB
testcase_11 AC 490 ms
216,536 KB
testcase_12 AC 663 ms
260,364 KB
testcase_13 AC 669 ms
302,644 KB
testcase_14 AC 655 ms
298,396 KB
testcase_15 AC 463 ms
120,536 KB
testcase_16 AC 202 ms
104,064 KB
testcase_17 TLE -
testcase_18 AC 1,693 ms
294,292 KB
testcase_19 AC 321 ms
110,976 KB
testcase_20 AC 869 ms
315,708 KB
testcase_21 AC 735 ms
218,024 KB
testcase_22 AC 439 ms
236,588 KB
testcase_23 AC 196 ms
103,168 KB
testcase_24 AC 1,525 ms
287,992 KB
testcase_25 AC 288 ms
122,300 KB
testcase_26 AC 755 ms
315,176 KB
testcase_27 AC 324 ms
106,752 KB
testcase_28 AC 1,172 ms
299,360 KB
testcase_29 AC 424 ms
207,936 KB
testcase_30 AC 36 ms
52,352 KB
testcase_31 AC 35 ms
52,608 KB
testcase_32 AC 49 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
INF = 2 ** 63 - 1
mod = 998244353


n, x, y = mi()

a = li()

b = li()

ans = 0
for bit in range(0, 20):
    dp = [[0] * 2 for _ in range(n + 1)]
    dp[0][0] = 1
    aone = bone = 0
    for i in range(x):
        if 1 & (a[i] >> bit):
            aone += 1
    for j in range(y):
        if 1 & (b[j] >> bit):
            bone += 1
    azero = x - aone
    bzero = y - bone
    for i in range(n):
        dp[i + 1][1] += dp[i][1] * azero * bone
        dp[i + 1][1] %= mod
        dp[i + 1][1] += dp[i][1] * aone * bone
        dp[i + 1][1] %= mod
        dp[i + 1][1] += dp[i][0] * aone * bone
        dp[i + 1][1] %= mod
        dp[i + 1][0] += dp[i][1] * x * bzero
        dp[i + 1][0] %= mod
        dp[i + 1][0] += dp[i][0] * aone * bzero
        dp[i + 1][0] %= mod
        dp[i + 1][0] += dp[i][0] * azero * y
        dp[i + 1][0] %= mod
    ans += dp[n][1] * pow(2, bit, mod)
    ans %= mod

print(ans)

0