結果

問題 No.1958 Bit Game
ユーザー lilictakalilictaka
提出日時 2022-06-02 00:16:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,906 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 263,176 KB
最終ジャッジ日時 2024-09-21 01:49:17
合計ジャッジ時間 33,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,888 ms
262,960 KB
testcase_01 AC 1,900 ms
262,316 KB
testcase_02 AC 1,891 ms
262,924 KB
testcase_03 AC 1,896 ms
262,964 KB
testcase_04 AC 1,882 ms
262,424 KB
testcase_05 AC 1,889 ms
262,872 KB
testcase_06 AC 1,878 ms
263,176 KB
testcase_07 AC 1,906 ms
262,548 KB
testcase_08 AC 1,899 ms
263,060 KB
testcase_09 AC 1,889 ms
262,800 KB
testcase_10 AC 135 ms
97,300 KB
testcase_11 AC 430 ms
134,360 KB
testcase_12 AC 657 ms
157,248 KB
testcase_13 AC 344 ms
128,548 KB
testcase_14 AC 555 ms
176,488 KB
testcase_15 AC 400 ms
110,836 KB
testcase_16 AC 216 ms
104,180 KB
testcase_17 AC 1,500 ms
231,108 KB
testcase_18 AC 1,191 ms
192,788 KB
testcase_19 AC 354 ms
111,548 KB
testcase_20 AC 452 ms
159,536 KB
testcase_21 AC 600 ms
122,436 KB
testcase_22 AC 154 ms
111,196 KB
testcase_23 AC 150 ms
102,280 KB
testcase_24 AC 1,370 ms
255,812 KB
testcase_25 AC 214 ms
105,316 KB
testcase_26 AC 321 ms
125,304 KB
testcase_27 AC 312 ms
106,588 KB
testcase_28 AC 1,178 ms
253,624 KB
testcase_29 AC 164 ms
106,816 KB
testcase_30 AC 37 ms
52,856 KB
testcase_31 AC 37 ms
53,012 KB
testcase_32 AC 42 ms
59,612 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 k in range(18):
    x = 0
    y = 0
    for a in A:
        if (a >> k) & 1:
            x += 1
    for b in B:
        if (b >> k) & 1:
            y += 1
    dp = [[0] * (N+1) for _ in range(2)]
    dp[0][0] = 1
    for n in range(1,N+1):
        dp[1][n] = dp[0][n-1] * x * y + dp[1][n-1] * X * y
        dp[1][n] %= mod
        dp[0][n] = dp[0][n-1] * (X*Y-x*y) + dp[1][n-1] * (X * (Y-y))
        dp[0][n] %= mod
    ans += dp[1][N] * pow(2,k,mod)
    ans %= mod
print(ans)
    
0