結果

問題 No.2711 Connecting Lights
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-01 02:15:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,093 ms / 5,000 ms
コード長 307 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 82,988 KB
最終ジャッジ日時 2024-09-30 21:38:11
合計ジャッジ時間 26,960 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,716 KB
testcase_01 AC 40 ms
52,404 KB
testcase_02 AC 54 ms
66,592 KB
testcase_03 AC 39 ms
53,548 KB
testcase_04 AC 38 ms
53,348 KB
testcase_05 AC 93 ms
77,660 KB
testcase_06 AC 65 ms
76,236 KB
testcase_07 AC 66 ms
76,408 KB
testcase_08 AC 104 ms
76,788 KB
testcase_09 AC 1,839 ms
80,024 KB
testcase_10 AC 1,439 ms
79,276 KB
testcase_11 AC 2,387 ms
81,788 KB
testcase_12 AC 635 ms
79,664 KB
testcase_13 AC 763 ms
79,976 KB
testcase_14 AC 116 ms
77,016 KB
testcase_15 AC 417 ms
78,180 KB
testcase_16 AC 88 ms
77,764 KB
testcase_17 AC 95 ms
77,816 KB
testcase_18 AC 153 ms
77,540 KB
testcase_19 AC 1,897 ms
80,872 KB
testcase_20 AC 786 ms
80,164 KB
testcase_21 AC 91 ms
77,628 KB
testcase_22 AC 65 ms
76,528 KB
testcase_23 AC 70 ms
77,940 KB
testcase_24 AC 1,157 ms
78,700 KB
testcase_25 AC 1,390 ms
79,228 KB
testcase_26 AC 3,093 ms
82,960 KB
testcase_27 AC 2,852 ms
82,808 KB
testcase_28 AC 3,060 ms
82,988 KB
testcase_29 AC 2,943 ms
82,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n, m, k = map(int, input().split())

dp = [[0] * (1 << n) for _ in range(m)]
dp[0] = [1] * (1 << n)
for i in range(m - 1):
	for j in range(1 << n):
		for jj in range(1 << n):
			if bin(j & jj).count('1') >= k:
				dp[i + 1][jj] += dp[i][j]
				dp[i + 1][jj] %= MOD

print(sum(dp[-1]) % MOD)
0