結果

問題 No.2711 Connecting Lights
ユーザー るこーそーるこーそー
提出日時 2024-09-25 15:47:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 328 bytes
コンパイル時間 1,292 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 82,848 KB
最終ジャッジ日時 2024-09-25 15:47:54
合計ジャッジ時間 33,233 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 51 ms
66,432 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 92 ms
77,352 KB
testcase_06 AC 64 ms
76,280 KB
testcase_07 AC 62 ms
76,544 KB
testcase_08 AC 98 ms
76,520 KB
testcase_09 AC 2,128 ms
80,128 KB
testcase_10 AC 1,584 ms
79,044 KB
testcase_11 AC 2,791 ms
81,692 KB
testcase_12 AC 725 ms
79,260 KB
testcase_13 AC 866 ms
80,024 KB
testcase_14 AC 120 ms
77,024 KB
testcase_15 AC 460 ms
77,952 KB
testcase_16 AC 91 ms
77,344 KB
testcase_17 AC 99 ms
78,032 KB
testcase_18 AC 152 ms
77,696 KB
testcase_19 AC 2,217 ms
80,560 KB
testcase_20 AC 900 ms
80,096 KB
testcase_21 AC 96 ms
77,492 KB
testcase_22 AC 67 ms
76,452 KB
testcase_23 AC 70 ms
77,796 KB
testcase_24 AC 1,344 ms
78,724 KB
testcase_25 AC 1,628 ms
78,952 KB
testcase_26 AC 3,532 ms
82,848 KB
testcase_27 AC 3,322 ms
82,676 KB
testcase_28 AC 3,468 ms
82,732 KB
testcase_29 AC 3,252 ms
82,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=998244353

n,m,k=map(int,input().split())
dp=[[0]*(1<<n) for _ in range(m+1)]
dp[0]=[1]*(1<<n)
for i in range(m):
    for bit in range(1<<n):
        for nbit in range(1<<n):
            if bin(bit&nbit).count('1')>=k:
                dp[i+1][nbit]+=dp[i][bit]
                dp[i+1][nbit]%=MOD

print(dp[m][(1<<n)-1]%MOD)
0