結果

問題 No.1958 Bit Game
ユーザー ikomaikoma
提出日時 2022-05-27 21:54:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 142,104 KB
最終ジャッジ日時 2024-09-20 15:47:59
合計ジャッジ時間 9,961 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
142,104 KB
testcase_01 AC 327 ms
141,996 KB
testcase_02 AC 332 ms
141,960 KB
testcase_03 AC 335 ms
141,828 KB
testcase_04 AC 328 ms
141,976 KB
testcase_05 AC 343 ms
141,712 KB
testcase_06 AC 330 ms
141,988 KB
testcase_07 AC 326 ms
141,824 KB
testcase_08 AC 327 ms
141,716 KB
testcase_09 AC 348 ms
141,964 KB
testcase_10 AC 131 ms
88,832 KB
testcase_11 AC 197 ms
105,620 KB
testcase_12 AC 231 ms
112,772 KB
testcase_13 AC 218 ms
104,676 KB
testcase_14 AC 202 ms
104,172 KB
testcase_15 AC 233 ms
109,056 KB
testcase_16 AC 183 ms
103,552 KB
testcase_17 AC 293 ms
112,160 KB
testcase_18 AC 262 ms
113,024 KB
testcase_19 AC 194 ms
109,052 KB
testcase_20 AC 207 ms
102,504 KB
testcase_21 AC 251 ms
113,028 KB
testcase_22 AC 143 ms
89,420 KB
testcase_23 AC 156 ms
101,152 KB
testcase_24 AC 271 ms
119,780 KB
testcase_25 AC 173 ms
104,192 KB
testcase_26 AC 217 ms
107,520 KB
testcase_27 AC 224 ms
105,472 KB
testcase_28 AC 250 ms
107,888 KB
testcase_29 AC 162 ms
98,364 KB
testcase_30 AC 40 ms
51,968 KB
testcase_31 AC 39 ms
51,968 KB
testcase_32 AC 44 ms
59,776 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
cnt1A = [0]*18
cnt1B = [0]*18
for a in A:
    for i in range(18):
        if (a>>i)&1:
            cnt1A[i]+=1
for b in B:
    for i in range(18):
        if (b>>i)&1:
            cnt1B[i]+=1

dp1 = [0]*18

for j in range(18):
    d0,d1=1,0
    na1=cnt1A[j]
    na0 = X-na1
    nb1=cnt1B[j]
    nb0 = Y-nb1
    for i in range(N):
        _d0 = d0 * na0 % MOD
        _d1 = (d0 * na1 + d1 * X) % MOD
        d0 = (_d0 * Y + _d1 * nb0) % MOD
        d1 = _d1 * nb1 % MOD
    dp1[j] = d1

ans=0
for i in range(18):
    ans += (dp1[i] << i) % MOD
    ans %= MOD
print(ans)
0