結果

問題 No.1958 Bit Game
ユーザー lilictakalilictaka
提出日時 2022-06-02 00:15:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 608 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 309,544 KB
最終ジャッジ日時 2024-09-21 01:48:26
合計ジャッジ時間 33,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 226 ms
129,828 KB
testcase_11 AC 696 ms
279,380 KB
testcase_12 AC 971 ms
275,132 KB
testcase_13 AC 772 ms
302,184 KB
testcase_14 AC 904 ms
290,044 KB
testcase_15 AC 548 ms
130,504 KB
testcase_16 AC 249 ms
104,572 KB
testcase_17 TLE -
testcase_18 AC 1,781 ms
284,428 KB
testcase_19 AC 466 ms
136,104 KB
testcase_20 AC 1,042 ms
309,544 KB
testcase_21 AC 869 ms
220,076 KB
testcase_22 AC 392 ms
224,752 KB
testcase_23 AC 176 ms
102,500 KB
testcase_24 TLE -
testcase_25 AC 320 ms
139,672 KB
testcase_26 AC 702 ms
305,300 KB
testcase_27 AC 385 ms
106,728 KB
testcase_28 AC 1,749 ms
296,260 KB
testcase_29 AC 361 ms
194,572 KB
testcase_30 AC 37 ms
52,688 KB
testcase_31 AC 38 ms
54,496 KB
testcase_32 AC 46 ms
62,940 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] * (2) for _ in range(N+1)]
    dp[0][0] = 1
    for n in range(1,N+1):
        dp[n][1] = dp[n-1][0] * x * y + dp[n-1][1] * X * y
        dp[n][1] %= mod
        dp[n][0] = dp[n-1][0] * (X*Y-x*y) + dp[n-1][1] * (X * (Y-y))
        dp[n][0] %= mod
    ans += dp[N][1] * pow(2,k,mod)
    ans %= mod
print(ans)
0