結果

問題 No.1710 Minimum OR is X
ユーザー wolgnikwolgnik
提出日時 2021-10-16 13:06:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 1,201 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 76,508 KB
最終ジャッジ日時 2024-09-17 19:23:57
合計ジャッジ時間 4,196 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,128 KB
testcase_01 AC 32 ms
53,244 KB
testcase_02 AC 71 ms
75,988 KB
testcase_03 AC 36 ms
53,084 KB
testcase_04 AC 31 ms
52,816 KB
testcase_05 AC 30 ms
52,820 KB
testcase_06 AC 30 ms
52,184 KB
testcase_07 AC 31 ms
53,092 KB
testcase_08 AC 84 ms
75,956 KB
testcase_09 AC 100 ms
75,972 KB
testcase_10 AC 106 ms
76,508 KB
testcase_11 AC 74 ms
76,152 KB
testcase_12 AC 138 ms
76,112 KB
testcase_13 AC 101 ms
76,392 KB
testcase_14 AC 112 ms
76,476 KB
testcase_15 AC 70 ms
76,332 KB
testcase_16 AC 127 ms
76,404 KB
testcase_17 AC 63 ms
73,324 KB
testcase_18 AC 236 ms
76,116 KB
testcase_19 AC 147 ms
76,504 KB
testcase_20 AC 64 ms
73,316 KB
testcase_21 AC 269 ms
76,188 KB
testcase_22 AC 329 ms
76,180 KB
testcase_23 AC 34 ms
53,440 KB
testcase_24 AC 35 ms
53,880 KB
testcase_25 AC 38 ms
59,444 KB
testcase_26 AC 32 ms
52,884 KB
testcase_27 AC 42 ms
61,700 KB
testcase_28 AC 56 ms
69,348 KB
testcase_29 AC 36 ms
60,632 KB
testcase_30 AC 31 ms
53,704 KB
testcase_31 AC 41 ms
61,476 KB
testcase_32 AC 58 ms
68,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M, K = map(int, input().split())
X = list(map(int, list(input())[: -1]))
mod = 998244353

class Factorial:
  def __init__(self, n, mod):
    self.mod = mod
    self.f = [1]
    for i in range(1, n + 1): self.f.append(self.f[-1] * i % mod)
    self.i = [pow(self.f[-1], mod - 2, mod)]
    for i in range(1, n + 1)[: : -1]: self.i.append(self.i[-1] * i % mod)
    self.i.reverse()
  def factorial(self, i): return self.f[i]
  def ifactorial(self, i): return self.i[i]
  def combi(self, n, k): return self.f[n] * self.i[n - k] % self.mod * self.i[k] % self.mod
  def permi(self, n, k): return self.f[n] * self.i[n - k] % self.mod

f = Factorial(N, mod)

dp = [0] * (N - K + 1)

dp[-1] = 1
for i in range(M):
  x = X[i]
  for j in range(N - K + 1):
    if x:
      t = 0
      for k in range(1, K + 1):
        t += f.combi(K + j, j + k)
        t %= mod
        #print(i, j, k, (K + j, j + k), t)
      dp[j] *= t * pow(2, N - j - K, mod)
      dp[j] %= mod
    else:
      for k in range(j):
        dp[k] += dp[j] * f.combi(K + j, j - k) * pow(2, N - j - K, mod)
        dp[k] %= mod
      dp[j] *= pow(2, N - j - K, mod)
      dp[j] %= mod
print(sum(dp) % mod)
0