結果

問題 No.2711 Connecting Lights
ユーザー loop0919loop0919
提出日時 2024-03-31 14:47:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 83,072 KB
最終ジャッジ日時 2024-09-30 19:58:22
合計ジャッジ時間 28,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,616 KB
testcase_01 AC 36 ms
52,384 KB
testcase_02 AC 49 ms
68,380 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 82 ms
77,704 KB
testcase_06 AC 58 ms
76,584 KB
testcase_07 AC 57 ms
76,664 KB
testcase_08 AC 107 ms
76,800 KB
testcase_09 AC 1,912 ms
80,096 KB
testcase_10 AC 1,436 ms
79,304 KB
testcase_11 AC 2,544 ms
81,656 KB
testcase_12 AC 684 ms
79,616 KB
testcase_13 AC 814 ms
80,116 KB
testcase_14 AC 126 ms
76,992 KB
testcase_15 AC 443 ms
78,144 KB
testcase_16 AC 97 ms
77,568 KB
testcase_17 AC 104 ms
77,824 KB
testcase_18 AC 156 ms
77,440 KB
testcase_19 AC 2,052 ms
80,768 KB
testcase_20 AC 850 ms
80,372 KB
testcase_21 AC 98 ms
77,568 KB
testcase_22 AC 71 ms
76,644 KB
testcase_23 AC 75 ms
77,904 KB
testcase_24 AC 1,250 ms
78,848 KB
testcase_25 AC 1,497 ms
79,360 KB
testcase_26 AC 3,272 ms
83,072 KB
testcase_27 AC 3,055 ms
83,072 KB
testcase_28 AC 3,242 ms
82,816 KB
testcase_29 AC 3,013 ms
82,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

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

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