結果

問題 No.1958 Bit Game
ユーザー Eki1009Eki1009
提出日時 2022-05-27 21:35:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 143,444 KB
最終ジャッジ日時 2024-09-20 15:35:10
合計ジャッジ時間 10,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 347 ms
143,108 KB
testcase_01 AC 364 ms
143,368 KB
testcase_02 AC 350 ms
142,980 KB
testcase_03 AC 355 ms
143,236 KB
testcase_04 AC 352 ms
143,384 KB
testcase_05 AC 356 ms
143,236 KB
testcase_06 AC 359 ms
143,244 KB
testcase_07 AC 357 ms
143,444 KB
testcase_08 AC 355 ms
143,376 KB
testcase_09 AC 354 ms
143,364 KB
testcase_10 AC 149 ms
89,856 KB
testcase_11 AC 193 ms
107,648 KB
testcase_12 AC 242 ms
112,320 KB
testcase_13 AC 243 ms
104,724 KB
testcase_14 AC 211 ms
105,472 KB
testcase_15 AC 224 ms
110,720 KB
testcase_16 AC 179 ms
105,472 KB
testcase_17 AC 307 ms
113,456 KB
testcase_18 AC 283 ms
114,304 KB
testcase_19 AC 198 ms
111,232 KB
testcase_20 AC 247 ms
103,808 KB
testcase_21 AC 239 ms
114,816 KB
testcase_22 AC 159 ms
89,984 KB
testcase_23 AC 165 ms
102,016 KB
testcase_24 AC 306 ms
120,016 KB
testcase_25 AC 180 ms
105,472 KB
testcase_26 AC 215 ms
108,928 KB
testcase_27 AC 219 ms
106,368 KB
testcase_28 AC 272 ms
106,788 KB
testcase_29 AC 147 ms
99,200 KB
testcase_30 AC 40 ms
51,712 KB
testcase_31 AC 39 ms
51,968 KB
testcase_32 AC 44 ms
59,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n,x,y = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
ans = 0
for i in range(18):
  a = sum(a>>i&1 for a in A)
  b = x-a
  c = sum(b>>i&1 for b in B)
  d = y-c
  dp0,dp1 = 1,0
  for _ in range(n):
    dp0,dp1 = dp0*b%mod,(dp0*a%mod+dp1*x%mod)%mod
    dp0,dp1 = (dp0*y%mod+dp1*d%mod)%mod,dp1*c%mod
  ans += (dp1<<i)%mod
  ans %= mod
print(ans)
0