結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,609 ms
143,732 KB
testcase_01 AC 1,598 ms
143,460 KB
testcase_02 AC 1,659 ms
143,600 KB
testcase_03 AC 1,625 ms
143,680 KB
testcase_04 AC 1,622 ms
143,564 KB
testcase_05 AC 1,628 ms
143,796 KB
testcase_06 AC 1,615 ms
143,992 KB
testcase_07 AC 1,616 ms
143,468 KB
testcase_08 AC 1,654 ms
143,476 KB
testcase_09 AC 1,734 ms
143,600 KB
testcase_10 AC 600 ms
89,344 KB
testcase_11 AC 896 ms
106,880 KB
testcase_12 AC 797 ms
112,228 KB
testcase_13 AC 1,151 ms
106,268 KB
testcase_14 AC 1,082 ms
105,856 KB
testcase_15 AC 478 ms
110,592 KB
testcase_16 AC 264 ms
104,188 KB
testcase_17 AC 1,335 ms
113,948 KB
testcase_18 AC 1,135 ms
114,480 KB
testcase_19 AC 423 ms
110,976 KB
testcase_20 AC 1,533 ms
103,936 KB
testcase_21 AC 596 ms
114,304 KB
testcase_22 AC 919 ms
89,728 KB
testcase_23 AC 390 ms
102,080 KB
testcase_24 AC 1,438 ms
119,836 KB
testcase_25 AC 573 ms
105,600 KB
testcase_26 AC 1,324 ms
109,056 KB
testcase_27 AC 333 ms
106,752 KB
testcase_28 AC 1,441 ms
107,396 KB
testcase_29 AC 824 ms
99,672 KB
testcase_30 AC 37 ms
51,968 KB
testcase_31 AC 36 ms
52,352 KB
testcase_32 AC 50 ms
62,208 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