結果

問題 No.2711 Connecting Lights
ユーザー sepa38sepa38
提出日時 2024-02-06 21:00:31
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 412 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 82,908 KB
最終ジャッジ日時 2024-09-28 12:13:13
合計ジャッジ時間 15,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,000 KB
testcase_01 AC 34 ms
53,484 KB
testcase_02 AC 50 ms
64,144 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 71 ms
77,484 KB
testcase_06 AC 50 ms
67,032 KB
testcase_07 AC 46 ms
64,060 KB
testcase_08 AC 65 ms
76,560 KB
testcase_09 AC 1,848 ms
79,776 KB
testcase_10 AC 47 ms
70,756 KB
testcase_11 AC 172 ms
81,468 KB
testcase_12 AC 358 ms
79,072 KB
testcase_13 AC 148 ms
80,108 KB
testcase_14 AC 47 ms
66,088 KB
testcase_15 AC 381 ms
78,120 KB
testcase_16 AC 72 ms
77,416 KB
testcase_17 AC 78 ms
77,712 KB
testcase_18 AC 84 ms
77,596 KB
testcase_19 AC 49 ms
72,980 KB
testcase_20 AC 441 ms
80,032 KB
testcase_21 AC 73 ms
77,548 KB
testcase_22 AC 45 ms
64,608 KB
testcase_23 AC 50 ms
72,744 KB
testcase_24 AC 944 ms
78,456 KB
testcase_25 AC 1,476 ms
78,892 KB
testcase_26 AC 3,079 ms
82,908 KB
testcase_27 AC 1,028 ms
82,560 KB
testcase_28 AC 3,042 ms
82,572 KB
testcase_29 AC 61 ms
82,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
assert m > 1
mod = 998244353
dp = [[0] * 2 ** n for _ in range(m)]
dp[0] = [1] * 2 ** n
ls = []
for i in range(2**n):
  if bin(i).count("1") >= k:
    ls.append(i)
for i in range(1, m):
  for j in ls:
    for l in ls:
      if bin(j & l).count("1") < k:
        continue
      dp[i][j] += dp[i-1][l]
    dp[i][j] %= mod
ans = 0
for i in ls:
  ans += dp[-1][i]
print(ans % mod)
0