結果

問題 No.2711 Connecting Lights
ユーザー tipstar0125tipstar0125
提出日時 2024-03-31 16:12:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,475 ms / 5,000 ms
コード長 504 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 83,016 KB
最終ジャッジ日時 2024-09-30 21:03:40
合計ジャッジ時間 22,655 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,936 KB
testcase_01 AC 37 ms
52,596 KB
testcase_02 AC 56 ms
70,952 KB
testcase_03 AC 37 ms
52,912 KB
testcase_04 AC 38 ms
52,928 KB
testcase_05 AC 93 ms
77,524 KB
testcase_06 AC 73 ms
76,052 KB
testcase_07 AC 71 ms
76,276 KB
testcase_08 AC 100 ms
76,524 KB
testcase_09 AC 1,507 ms
80,068 KB
testcase_10 AC 1,140 ms
79,068 KB
testcase_11 AC 2,013 ms
81,592 KB
testcase_12 AC 544 ms
79,560 KB
testcase_13 AC 611 ms
80,200 KB
testcase_14 AC 116 ms
77,016 KB
testcase_15 AC 368 ms
78,012 KB
testcase_16 AC 94 ms
77,260 KB
testcase_17 AC 101 ms
78,400 KB
testcase_18 AC 144 ms
77,536 KB
testcase_19 AC 1,596 ms
80,404 KB
testcase_20 AC 637 ms
80,448 KB
testcase_21 AC 96 ms
77,596 KB
testcase_22 AC 72 ms
76,280 KB
testcase_23 AC 77 ms
77,592 KB
testcase_24 AC 938 ms
78,492 KB
testcase_25 AC 1,157 ms
78,996 KB
testcase_26 AC 2,475 ms
82,704 KB
testcase_27 AC 2,265 ms
83,016 KB
testcase_28 AC 2,448 ms
82,644 KB
testcase_29 AC 2,255 ms
82,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

MOD=998244353
dp=[[0 for _ in range(1<<N)] for _ in range(M)]
for i in range(1<<N):dp[0][i]=1

def popcount(x):
    ret=0
    for i in range(5):
        if x>>i&1==1:ret+=1
    return ret

for i in range(1,M):
    for j in range(1<<N):
        for k in range(1<<N):
            x=j&k
            if popcount(x)>=K:
                dp[i][j]+=dp[i-1][k]
                dp[i][j]%=MOD

ans=0            
for i in range(1<<N):
    ans+=dp[M-1][i]
    ans%=MOD
print(ans)
0