結果

問題 No.2711 Connecting Lights
ユーザー 👑 KA37RIKA37RI
提出日時 2024-03-31 15:14:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,983 ms / 5,000 ms
コード長 586 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,556 KB
最終ジャッジ日時 2024-09-30 20:28:31
合計ジャッジ時間 26,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,880 KB
testcase_01 AC 35 ms
52,532 KB
testcase_02 AC 46 ms
66,656 KB
testcase_03 AC 35 ms
52,568 KB
testcase_04 AC 35 ms
51,828 KB
testcase_05 AC 87 ms
76,356 KB
testcase_06 AC 68 ms
75,952 KB
testcase_07 AC 65 ms
76,312 KB
testcase_08 AC 100 ms
76,096 KB
testcase_09 AC 1,778 ms
76,508 KB
testcase_10 AC 1,578 ms
76,212 KB
testcase_11 AC 2,442 ms
76,220 KB
testcase_12 AC 639 ms
75,928 KB
testcase_13 AC 725 ms
76,372 KB
testcase_14 AC 118 ms
76,116 KB
testcase_15 AC 422 ms
76,084 KB
testcase_16 AC 89 ms
75,964 KB
testcase_17 AC 94 ms
75,940 KB
testcase_18 AC 149 ms
76,088 KB
testcase_19 AC 1,916 ms
76,216 KB
testcase_20 AC 796 ms
76,084 KB
testcase_21 AC 89 ms
76,020 KB
testcase_22 AC 69 ms
76,356 KB
testcase_23 AC 73 ms
76,048 KB
testcase_24 AC 1,149 ms
76,180 KB
testcase_25 AC 1,367 ms
76,164 KB
testcase_26 AC 2,979 ms
76,344 KB
testcase_27 AC 2,842 ms
76,356 KB
testcase_28 AC 2,983 ms
76,556 KB
testcase_29 AC 2,809 ms
76,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

md = 998244353

def solve(n, m, k):
  cnt = [1] * (1 << n)
  for _ in range(m - 1):
    nxt_cnt = [0] * (1 << n)
    for i in range(1 << n):
      for j in range(1 << n):
        if bin(i & j).count("1") >= k:
          nxt_cnt[j] += cnt[i]
    for i in range(1 << n):
      nxt_cnt[i] %= md
    cnt = nxt_cnt
  return sum(cnt) % md

def solve1(n, k):
  ans = 0
  for i in range(1 << n):
    if bin(i).count("1") >= k:
      ans += 1
  return ans

n, m, k = [int(x) for x in input().split()]

# if m == 1:
#   print(solve1(n, k))
# else:
#   print(solve(n, m, k))

print(solve(n, m, k))
0