結果

問題 No.2711 Connecting Lights
ユーザー nikoro256nikoro256
提出日時 2024-03-31 14:34:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 362 ms / 5,000 ms
コード長 330 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 82,752 KB
最終ジャッジ日時 2024-09-30 19:42:02
合計ジャッジ時間 4,637 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,020 KB
testcase_01 AC 41 ms
52,932 KB
testcase_02 AC 47 ms
60,264 KB
testcase_03 AC 40 ms
53,568 KB
testcase_04 AC 41 ms
52,200 KB
testcase_05 AC 55 ms
66,332 KB
testcase_06 AC 49 ms
60,824 KB
testcase_07 AC 51 ms
62,680 KB
testcase_08 AC 54 ms
65,120 KB
testcase_09 AC 235 ms
79,748 KB
testcase_10 AC 122 ms
79,176 KB
testcase_11 AC 173 ms
81,456 KB
testcase_12 AC 125 ms
79,104 KB
testcase_13 AC 129 ms
79,764 KB
testcase_14 AC 57 ms
66,104 KB
testcase_15 AC 98 ms
71,520 KB
testcase_16 AC 55 ms
66,500 KB
testcase_17 AC 56 ms
66,712 KB
testcase_18 AC 61 ms
66,968 KB
testcase_19 AC 151 ms
80,260 KB
testcase_20 AC 143 ms
79,880 KB
testcase_21 AC 55 ms
66,272 KB
testcase_22 AC 52 ms
64,300 KB
testcase_23 AC 53 ms
66,412 KB
testcase_24 AC 135 ms
78,780 KB
testcase_25 AC 193 ms
79,100 KB
testcase_26 AC 357 ms
82,656 KB
testcase_27 AC 215 ms
82,600 KB
testcase_28 AC 362 ms
82,752 KB
testcase_29 AC 203 ms
82,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
dp=[[0]*(2**N) for _ in range(M)]
dp[0]=[1]*(2**N)
p=998244353
for i in range(M-1):
    for j in range(2**N):
        for k in range(2**N):
            if (k&j).bit_count()>=K:
                dp[i+1][k]+=dp[i][j]
                dp[i+1][k]%=p
ans=0
for d in dp[-1]:
    ans+=d
    ans%=p
print(ans)
0