結果

問題 No.2711 Connecting Lights
ユーザー sepa38sepa38
提出日時 2024-02-06 20:43:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 401 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,732 KB
最終ジャッジ日時 2024-09-28 12:12:30
合計ジャッジ時間 16,786 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 66 ms
62,976 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 79 ms
77,312 KB
testcase_06 AC 54 ms
66,176 KB
testcase_07 AC 50 ms
62,976 KB
testcase_08 AC 78 ms
76,672 KB
testcase_09 AC 2,027 ms
79,860 KB
testcase_10 AC 53 ms
69,504 KB
testcase_11 AC 190 ms
81,536 KB
testcase_12 AC 408 ms
79,300 KB
testcase_13 AC 164 ms
79,744 KB
testcase_14 AC 52 ms
65,408 KB
testcase_15 AC 429 ms
77,696 KB
testcase_16 AC 78 ms
77,312 KB
testcase_17 AC 85 ms
77,696 KB
testcase_18 AC 91 ms
77,568 KB
testcase_19 AC 55 ms
72,832 KB
testcase_20 AC 504 ms
80,256 KB
testcase_21 AC 82 ms
77,460 KB
testcase_22 AC 50 ms
63,744 KB
testcase_23 AC 55 ms
72,448 KB
testcase_24 AC 1,042 ms
78,592 KB
testcase_25 AC 1,592 ms
78,976 KB
testcase_26 AC 3,417 ms
82,732 KB
testcase_27 AC 1,110 ms
82,688 KB
testcase_28 AC 3,426 ms
82,432 KB
testcase_29 AC 67 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
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