結果

問題 No.1958 Bit Game
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-27 22:28:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 714 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 143,836 KB
最終ジャッジ日時 2024-09-20 16:07:16
合計ジャッジ時間 10,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 371 ms
143,828 KB
testcase_01 AC 373 ms
143,772 KB
testcase_02 AC 365 ms
143,828 KB
testcase_03 AC 361 ms
143,824 KB
testcase_04 AC 365 ms
143,836 KB
testcase_05 AC 350 ms
143,776 KB
testcase_06 AC 361 ms
143,760 KB
testcase_07 AC 356 ms
143,492 KB
testcase_08 AC 371 ms
143,364 KB
testcase_09 AC 362 ms
143,644 KB
testcase_10 AC 130 ms
89,344 KB
testcase_11 AC 210 ms
107,156 KB
testcase_12 AC 231 ms
112,344 KB
testcase_13 AC 232 ms
106,232 KB
testcase_14 AC 217 ms
105,736 KB
testcase_15 AC 221 ms
110,336 KB
testcase_16 AC 170 ms
104,064 KB
testcase_17 AC 310 ms
113,696 KB
testcase_18 AC 279 ms
114,304 KB
testcase_19 AC 195 ms
110,976 KB
testcase_20 AC 244 ms
103,784 KB
testcase_21 AC 237 ms
114,944 KB
testcase_22 AC 156 ms
89,600 KB
testcase_23 AC 151 ms
102,016 KB
testcase_24 AC 291 ms
119,520 KB
testcase_25 AC 166 ms
105,216 KB
testcase_26 AC 236 ms
109,056 KB
testcase_27 AC 205 ms
106,400 KB
testcase_28 AC 267 ms
107,416 KB
testcase_29 AC 173 ms
99,456 KB
testcase_30 AC 34 ms
52,480 KB
testcase_31 AC 35 ms
52,096 KB
testcase_32 AC 39 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,y = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
mod = 998244353

ans = 0
for i in range(18):
    nA = [0,0]
    nB = [0,0]
    for a in A:
        if a >> i & 1:
            nA[1] += 1
        else:
            nA[0] += 1
    for b in B:
        if b >> 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 += (1<<i)*dp[1]%mod
    ans %= mod
print(ans)
            
0