結果

問題 No.1958 Bit Game
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-05-28 04:38:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,953 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 143,928 KB
最終ジャッジ日時 2024-12-20 20:18:53
合計ジャッジ時間 46,665 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,934 ms
143,812 KB
testcase_01 AC 1,940 ms
143,396 KB
testcase_02 AC 1,949 ms
143,472 KB
testcase_03 AC 1,950 ms
143,928 KB
testcase_04 AC 1,938 ms
143,560 KB
testcase_05 AC 1,928 ms
143,476 KB
testcase_06 AC 1,947 ms
143,668 KB
testcase_07 AC 1,947 ms
143,852 KB
testcase_08 AC 1,940 ms
143,400 KB
testcase_09 AC 1,953 ms
143,540 KB
testcase_10 AC 706 ms
89,604 KB
testcase_11 AC 1,051 ms
106,924 KB
testcase_12 AC 926 ms
112,232 KB
testcase_13 AC 1,376 ms
106,348 KB
testcase_14 AC 1,317 ms
105,492 KB
testcase_15 AC 478 ms
110,464 KB
testcase_16 AC 299 ms
104,320 KB
testcase_17 AC 1,641 ms
113,652 KB
testcase_18 AC 1,266 ms
114,764 KB
testcase_19 AC 499 ms
111,016 KB
testcase_20 AC 1,836 ms
103,740 KB
testcase_21 AC 692 ms
114,504 KB
testcase_22 AC 1,111 ms
89,748 KB
testcase_23 AC 454 ms
102,348 KB
testcase_24 AC 1,744 ms
119,788 KB
testcase_25 AC 656 ms
105,120 KB
testcase_26 AC 1,606 ms
108,672 KB
testcase_27 AC 363 ms
106,624 KB
testcase_28 AC 1,738 ms
107,492 KB
testcase_29 AC 985 ms
99,328 KB
testcase_30 AC 44 ms
52,352 KB
testcase_31 AC 39 ms
52,352 KB
testcase_32 AC 53 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,y = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
mod = 998244353
cul = lambda s:pow(s,mod-2,mod)
ans = 0
for i in range(18):
    a1,a0,b1,b0 = 0,0,0,0
    for j in range(x):
        if a[j] & (1 << i):a1 += 1
        else:a0 += 1
    for j in range(y):
        if b[j] & (1 << i):b1 += 1
        else:b0 += 1
    dp = [1,0]
    a0x = cul(x) * a0
    a1x = cul(x) * a1
    b0y = cul(y) * b0
    b1y = cul(y) * b1
    for j in range(n):
        n_dp = [0,0]
        n_dp[0] += dp[0] * (a0x + a1x*b0y)
        n_dp[0] += dp[1] * b0y
        n_dp[1] += dp[0] * a1x*b1y
        n_dp[1] += dp[1] * b1y
        n_dp[0] %= mod
        n_dp[1] %= mod
        dp = n_dp
#     print(dp,i)
    ans += pow(x*y,n,mod) * pow(2,i,mod)*dp[1]
    ans %= mod
print(ans)
0