結果

問題 No.2711 Connecting Lights
ユーザー hiro1729hiro1729
提出日時 2024-03-31 13:53:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,617 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 76,532 KB
最終ジャッジ日時 2024-09-30 18:35:56
合計ジャッジ時間 30,826 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,872 KB
testcase_01 AC 39 ms
53,308 KB
testcase_02 AC 49 ms
66,108 KB
testcase_03 AC 37 ms
53,128 KB
testcase_04 AC 37 ms
53,536 KB
testcase_05 AC 89 ms
76,200 KB
testcase_06 AC 67 ms
76,200 KB
testcase_07 AC 64 ms
76,216 KB
testcase_08 AC 100 ms
76,236 KB
testcase_09 AC 2,142 ms
76,356 KB
testcase_10 AC 1,629 ms
76,148 KB
testcase_11 AC 2,878 ms
76,312 KB
testcase_12 AC 739 ms
76,240 KB
testcase_13 AC 866 ms
76,228 KB
testcase_14 AC 123 ms
76,248 KB
testcase_15 AC 481 ms
75,980 KB
testcase_16 AC 91 ms
76,056 KB
testcase_17 AC 98 ms
76,108 KB
testcase_18 AC 159 ms
76,380 KB
testcase_19 AC 2,082 ms
76,288 KB
testcase_20 AC 928 ms
76,156 KB
testcase_21 AC 94 ms
76,012 KB
testcase_22 AC 66 ms
76,172 KB
testcase_23 AC 69 ms
76,340 KB
testcase_24 AC 1,356 ms
76,532 KB
testcase_25 AC 1,537 ms
76,320 KB
testcase_26 AC 3,498 ms
76,484 KB
testcase_27 AC 3,274 ms
76,484 KB
testcase_28 AC 3,617 ms
76,384 KB
testcase_29 AC 3,436 ms
76,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, K = map(int, input().split())
mod = 998244353
dp = [1] * (1 << n)
for i in range(m - 1):
	ndp = [0] * (1 << n)
	for j in range(1 << n):
		for k in range(1 << n):
			# dp[j]→ndp[k]
			if bin(j & k).count('1') >= K:
				ndp[k] += dp[j]
				ndp[k] %= mod
	dp = ndp
print(sum(dp) % mod)
0