結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,344 KB
testcase_01 AC 40 ms
53,148 KB
testcase_02 AC 48 ms
60,088 KB
testcase_03 AC 42 ms
53,804 KB
testcase_04 AC 38 ms
53,276 KB
testcase_05 AC 57 ms
66,616 KB
testcase_06 AC 48 ms
60,968 KB
testcase_07 AC 51 ms
62,896 KB
testcase_08 AC 54 ms
64,808 KB
testcase_09 AC 242 ms
79,876 KB
testcase_10 AC 126 ms
79,108 KB
testcase_11 AC 179 ms
81,420 KB
testcase_12 AC 130 ms
78,976 KB
testcase_13 AC 130 ms
80,140 KB
testcase_14 AC 55 ms
65,304 KB
testcase_15 AC 100 ms
71,312 KB
testcase_16 AC 58 ms
66,128 KB
testcase_17 AC 55 ms
67,192 KB
testcase_18 AC 62 ms
66,456 KB
testcase_19 AC 157 ms
80,312 KB
testcase_20 AC 148 ms
79,908 KB
testcase_21 AC 58 ms
67,388 KB
testcase_22 AC 53 ms
62,780 KB
testcase_23 AC 53 ms
65,872 KB
testcase_24 AC 139 ms
78,508 KB
testcase_25 AC 194 ms
79,100 KB
testcase_26 AC 362 ms
82,576 KB
testcase_27 AC 213 ms
82,596 KB
testcase_28 AC 356 ms
82,732 KB
testcase_29 AC 199 ms
82,528 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