結果

問題 No.1958 Bit Game
ユーザー mkawa2mkawa2
提出日時 2022-05-27 22:23:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 1,309 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 142,240 KB
最終ジャッジ日時 2024-09-20 16:05:02
合計ジャッジ時間 7,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
142,044 KB
testcase_01 AC 269 ms
141,916 KB
testcase_02 AC 260 ms
141,908 KB
testcase_03 AC 256 ms
141,732 KB
testcase_04 AC 256 ms
141,600 KB
testcase_05 AC 261 ms
142,240 KB
testcase_06 AC 255 ms
141,788 KB
testcase_07 AC 257 ms
141,788 KB
testcase_08 AC 251 ms
141,532 KB
testcase_09 AC 256 ms
141,788 KB
testcase_10 AC 108 ms
89,004 KB
testcase_11 AC 150 ms
104,928 KB
testcase_12 AC 174 ms
112,868 KB
testcase_13 AC 175 ms
106,184 KB
testcase_14 AC 162 ms
102,912 KB
testcase_15 AC 173 ms
108,800 KB
testcase_16 AC 138 ms
102,656 KB
testcase_17 AC 226 ms
111,784 KB
testcase_18 AC 200 ms
112,896 KB
testcase_19 AC 147 ms
109,036 KB
testcase_20 AC 178 ms
101,888 KB
testcase_21 AC 183 ms
112,896 KB
testcase_22 AC 122 ms
88,960 KB
testcase_23 AC 121 ms
100,864 KB
testcase_24 AC 221 ms
120,392 KB
testcase_25 AC 132 ms
103,808 KB
testcase_26 AC 175 ms
106,808 KB
testcase_27 AC 148 ms
105,088 KB
testcase_28 AC 201 ms
107,248 KB
testcase_29 AC 138 ms
98,176 KB
testcase_30 AC 37 ms
52,352 KB
testcase_31 AC 36 ms
52,352 KB
testcase_32 AC 46 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

def cal(k):
    dp = [1, 0]
    for _ in range(n):
        ndp = [0, 0]
        ndp[0] = dp[0]*(x*y%md-cc[0][k]*cc[1][k]%md)%md+dp[1]*x%md*(y-cc[1][k])%md
        ndp[1] = dp[0]*cc[0][k]%md*cc[1][k]%md+dp[1]*x%md*cc[1][k]%md
        ndp[0] %= md
        ndp[1] %= md
        dp = ndp

    return dp[1]*pow(2, k, md)%md

def cnt(aa, i):
    for a in aa:
        for k in range(18):
            cc[i][k] += a & 1
            a >>= 1

n, x, y = LI()
aa = LI()
bb = LI()

cc = [[0]*18, [0]*18]
cnt(aa, 0)
cnt(bb, 1)

ans = 0
for k in range(18):
    ans += cal(k)
    ans %= md

print(ans)
0