結果

問題 No.1958 Bit Game
ユーザー ああいいああいい
提出日時 2022-05-28 16:49:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,628 KB
実行使用メモリ 144,068 KB
最終ジャッジ日時 2024-09-20 23:14:16
合計ジャッジ時間 8,424 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
143,608 KB
testcase_01 AC 254 ms
143,300 KB
testcase_02 AC 261 ms
144,068 KB
testcase_03 AC 254 ms
143,632 KB
testcase_04 AC 256 ms
143,772 KB
testcase_05 AC 261 ms
143,624 KB
testcase_06 AC 260 ms
143,864 KB
testcase_07 AC 252 ms
143,804 KB
testcase_08 AC 257 ms
143,552 KB
testcase_09 AC 254 ms
143,548 KB
testcase_10 AC 98 ms
89,344 KB
testcase_11 AC 147 ms
107,136 KB
testcase_12 AC 179 ms
107,724 KB
testcase_13 AC 158 ms
104,900 KB
testcase_14 AC 145 ms
105,600 KB
testcase_15 AC 205 ms
110,464 KB
testcase_16 AC 153 ms
105,320 KB
testcase_17 AC 215 ms
113,060 KB
testcase_18 AC 219 ms
114,760 KB
testcase_19 AC 171 ms
111,232 KB
testcase_20 AC 147 ms
103,864 KB
testcase_21 AC 208 ms
114,688 KB
testcase_22 AC 94 ms
87,680 KB
testcase_23 AC 126 ms
102,000 KB
testcase_24 AC 190 ms
113,248 KB
testcase_25 AC 135 ms
105,148 KB
testcase_26 AC 148 ms
108,936 KB
testcase_27 AC 188 ms
107,008 KB
testcase_28 AC 173 ms
103,716 KB
testcase_29 AC 106 ms
96,884 KB
testcase_30 AC 37 ms
51,968 KB
testcase_31 AC 36 ms
51,840 KB
testcase_32 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))

P = 998244353

ans = 0
for i in range(18):
    a = 0
    b = 0
    mask = 1 << i
    for j in A:
        if mask & j:a += 1
    for j in B:
        if mask & j:b += 1
    tmp = 0
    x = 1
    y = 1
    if b == 0:continue
    if a == X:
        tmp = pow(X,N - 1,P) * a * pow(Y,N - 1,P) * b % P
        ans += tmp
        continue
    u = a * pow(X - a,N - 1,P) * pow(b,N,P) % P
    r = X * Y * pow(b * (X - a),P - 2,P) % P
    if r == 1:
        v = N
    else:
        v = (1 - pow(r,N,P)) * pow(1 - r,P - 2,P) % P
    ans += u * v % P * mask % P
    
print(ans % P)
    
0