結果

問題 No.2711 Connecting Lights
ユーザー 👑 Nafmo2Nafmo2
提出日時 2024-01-22 19:58:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,435 ms / 5,000 ms
コード長 402 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 82,948 KB
最終ジャッジ日時 2024-09-28 06:33:03
合計ジャッジ時間 30,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 54 ms
66,048 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 106 ms
77,088 KB
testcase_06 AC 69 ms
76,028 KB
testcase_07 AC 70 ms
76,292 KB
testcase_08 AC 111 ms
76,588 KB
testcase_09 AC 2,057 ms
80,124 KB
testcase_10 AC 1,549 ms
78,960 KB
testcase_11 AC 2,697 ms
81,460 KB
testcase_12 AC 731 ms
80,000 KB
testcase_13 AC 823 ms
79,972 KB
testcase_14 AC 135 ms
77,264 KB
testcase_15 AC 469 ms
78,204 KB
testcase_16 AC 103 ms
77,612 KB
testcase_17 AC 113 ms
77,956 KB
testcase_18 AC 173 ms
77,568 KB
testcase_19 AC 2,160 ms
80,428 KB
testcase_20 AC 907 ms
80,384 KB
testcase_21 AC 109 ms
77,548 KB
testcase_22 AC 76 ms
76,544 KB
testcase_23 AC 83 ms
77,820 KB
testcase_24 AC 1,293 ms
78,568 KB
testcase_25 AC 1,569 ms
79,104 KB
testcase_26 AC 3,426 ms
82,948 KB
testcase_27 AC 3,247 ms
82,688 KB
testcase_28 AC 3,435 ms
82,560 KB
testcase_29 AC 3,235 ms
82,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N, M, K = map(int, input().split())
dp = [[0 for i in range(1 << N)] for j in range(M)]
ans = 0
for i in range(1 << N):
    dp[0][i] = 1
for i in range(M - 1):
    for bit in range(1 << N):
        for next in range(1 << N):
            if bin(bit & next).count("1") >= K:
                dp[i + 1][next] += dp[i][bit]
                dp[i + 1][next] %= MOD
print(sum(dp[M - 1]) % MOD)
0