結果

問題 No.2711 Connecting Lights
ユーザー hiryuNhiryuN
提出日時 2024-03-31 14:04:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 525 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 77,616 KB
最終ジャッジ日時 2024-09-30 18:55:25
合計ジャッジ時間 34,443 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,280 KB
testcase_01 AC 33 ms
53,696 KB
testcase_02 AC 67 ms
76,280 KB
testcase_03 AC 34 ms
53,424 KB
testcase_04 AC 32 ms
52,472 KB
testcase_05 AC 114 ms
76,288 KB
testcase_06 AC 77 ms
76,380 KB
testcase_07 AC 71 ms
76,368 KB
testcase_08 AC 138 ms
76,692 KB
testcase_09 AC 3,599 ms
76,916 KB
testcase_10 AC 2,901 ms
76,584 KB
testcase_11 TLE -
testcase_12 AC 1,155 ms
76,756 KB
testcase_13 AC 1,317 ms
76,408 KB
testcase_14 AC 163 ms
76,324 KB
testcase_15 AC 717 ms
76,476 KB
testcase_16 AC 117 ms
76,368 KB
testcase_17 AC 130 ms
76,196 KB
testcase_18 AC 225 ms
76,648 KB
testcase_19 AC 4,100 ms
76,836 KB
testcase_20 AC 1,364 ms
76,612 KB
testcase_21 AC 119 ms
76,260 KB
testcase_22 AC 72 ms
76,220 KB
testcase_23 AC 77 ms
76,336 KB
testcase_24 AC 2,317 ms
76,972 KB
testcase_25 AC 2,787 ms
76,868 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,d=map(int,input().split())
M=998244353
D=[1]*(2**n)
for i in range(m-1):
    nD=[0]*(2**n)
    for j in range(2**n,2**(n+1)):
        key=str(bin(j))[3:]
        for k in range(2**n,2**(n+1)):
            kay=str(bin(k))[3:]
            #print(key,kay)
            cnt=0
            for t in range(n):
                if key[t]=="1" and kay[t]=="1":
                    cnt+=1
            if cnt>=d:
                nD[j-2**n]+=D[k-2**n]
                nD[j-2**n]%=M
    D=nD[:]
print(sum(D)%M)
            
            
0