結果

問題 No.2711 Connecting Lights
ユーザー loop0919loop0919
提出日時 2024-03-31 14:51:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,113 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 83,048 KB
最終ジャッジ日時 2024-09-30 20:03:06
合計ジャッジ時間 27,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,376 KB
testcase_01 AC 41 ms
53,252 KB
testcase_02 AC 51 ms
67,668 KB
testcase_03 AC 37 ms
53,632 KB
testcase_04 AC 37 ms
52,872 KB
testcase_05 AC 91 ms
77,556 KB
testcase_06 AC 65 ms
76,332 KB
testcase_07 AC 64 ms
76,112 KB
testcase_08 AC 96 ms
76,660 KB
testcase_09 AC 1,839 ms
80,276 KB
testcase_10 AC 1,385 ms
79,100 KB
testcase_11 AC 2,423 ms
81,740 KB
testcase_12 AC 679 ms
79,184 KB
testcase_13 AC 810 ms
79,976 KB
testcase_14 AC 121 ms
77,240 KB
testcase_15 AC 422 ms
77,932 KB
testcase_16 AC 91 ms
77,524 KB
testcase_17 AC 98 ms
77,860 KB
testcase_18 AC 149 ms
77,404 KB
testcase_19 AC 1,947 ms
80,592 KB
testcase_20 AC 805 ms
80,180 KB
testcase_21 AC 97 ms
77,796 KB
testcase_22 AC 72 ms
76,392 KB
testcase_23 AC 76 ms
77,972 KB
testcase_24 AC 1,185 ms
78,440 KB
testcase_25 AC 1,433 ms
79,156 KB
testcase_26 AC 3,112 ms
82,876 KB
testcase_27 AC 2,959 ms
82,904 KB
testcase_28 AC 3,113 ms
83,048 KB
testcase_29 AC 2,935 ms
82,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

N, M, K = map(int, input().split())

if M == 1:
    print(2**N)
    exit()

dp = [[0]*(1<<N) for _ in range(M)]
dp[0] = [1 if bin(i)[2:].count('1') >= K else 0 for i in range(1<<N)]

for i in range(1, M):
    for pre_bit in range(1<<N):
        for next_bit in range(1<<N):
            if bin(pre_bit & next_bit)[2:].count('1') >= K:
                dp[i][next_bit] += dp[i-1][pre_bit]
                dp[i][next_bit] %= MOD

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