結果

問題 No.2711 Connecting Lights
ユーザー sepa38sepa38
提出日時 2024-02-06 21:03:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,138 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 82,688 KB
最終ジャッジ日時 2024-09-28 12:13:31
合計ジャッジ時間 15,170 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
52,608 KB
testcase_02 AC 45 ms
63,104 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 71 ms
77,312 KB
testcase_06 AC 53 ms
66,176 KB
testcase_07 AC 45 ms
63,232 KB
testcase_08 AC 68 ms
76,416 KB
testcase_09 AC 1,800 ms
79,744 KB
testcase_10 AC 49 ms
69,632 KB
testcase_11 AC 184 ms
81,536 KB
testcase_12 AC 372 ms
79,104 KB
testcase_13 AC 149 ms
79,872 KB
testcase_14 AC 47 ms
65,536 KB
testcase_15 AC 376 ms
77,696 KB
testcase_16 AC 77 ms
77,440 KB
testcase_17 AC 83 ms
77,568 KB
testcase_18 AC 88 ms
77,360 KB
testcase_19 AC 51 ms
72,960 KB
testcase_20 AC 458 ms
80,256 KB
testcase_21 AC 75 ms
77,568 KB
testcase_22 AC 47 ms
63,744 KB
testcase_23 AC 52 ms
72,576 KB
testcase_24 AC 953 ms
78,416 KB
testcase_25 AC 1,409 ms
78,844 KB
testcase_26 AC 3,138 ms
82,560 KB
testcase_27 AC 990 ms
82,688 KB
testcase_28 AC 3,046 ms
82,688 KB
testcase_29 AC 64 ms
82,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
mod = 998244353
if m == 1:
  print(pow(2, n, mod))
  exit()
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