結果

問題 No.2711 Connecting Lights
ユーザー titiatitia
提出日時 2024-04-29 02:50:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,171 ms / 5,000 ms
コード長 439 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-11-18 01:52:39
合計ジャッジ時間 11,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 62 ms
65,408 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 80 ms
75,520 KB
testcase_06 AC 67 ms
66,176 KB
testcase_07 AC 56 ms
65,024 KB
testcase_08 AC 83 ms
75,904 KB
testcase_09 AC 709 ms
75,776 KB
testcase_10 AC 504 ms
75,972 KB
testcase_11 AC 835 ms
76,012 KB
testcase_12 AC 298 ms
75,960 KB
testcase_13 AC 332 ms
76,056 KB
testcase_14 AC 78 ms
75,904 KB
testcase_15 AC 230 ms
75,904 KB
testcase_16 AC 71 ms
75,908 KB
testcase_17 AC 77 ms
75,648 KB
testcase_18 AC 91 ms
76,032 KB
testcase_19 AC 696 ms
75,716 KB
testcase_20 AC 364 ms
75,392 KB
testcase_21 AC 74 ms
76,160 KB
testcase_22 AC 59 ms
66,816 KB
testcase_23 AC 66 ms
70,528 KB
testcase_24 AC 431 ms
76,160 KB
testcase_25 AC 564 ms
75,776 KB
testcase_26 AC 1,171 ms
75,520 KB
testcase_27 AC 967 ms
76,052 KB
testcase_28 AC 1,157 ms
76,160 KB
testcase_29 AC 999 ms
75,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

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

DP=[1]*(1<<N)

for i in range(M-1):
    NDP=[0]*(1<<N)

    for j in range(1<<N):
        for k in range(1<<N):

            count=0

            for l in range(N):
                if (j & (1<<l) != 0) and (k & (1<<l) != 0):
                    count+=1

            if count>=K:
                NDP[k]=(NDP[k]+DP[j])%mod

    DP=NDP

print(sum(DP)%mod)
0