結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー 👑 KazunKazun
提出日時 2021-08-05 20:34:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 3,000 ms
コード長 538 bytes
コンパイル時間 647 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-09-16 15:23:48
合計ジャッジ時間 4,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 62 ms
67,328 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 44 ms
59,008 KB
testcase_09 AC 47 ms
60,416 KB
testcase_10 AC 45 ms
59,008 KB
testcase_11 AC 47 ms
59,776 KB
testcase_12 AC 45 ms
59,648 KB
testcase_13 AC 42 ms
58,624 KB
testcase_14 AC 271 ms
105,984 KB
testcase_15 AC 278 ms
107,264 KB
testcase_16 AC 267 ms
107,392 KB
testcase_17 AC 277 ms
107,264 KB
testcase_18 AC 275 ms
107,520 KB
testcase_19 AC 275 ms
107,904 KB
testcase_20 AC 45 ms
60,032 KB
testcase_21 AC 54 ms
63,872 KB
testcase_22 AC 51 ms
62,592 KB
testcase_23 AC 62 ms
66,944 KB
testcase_24 AC 56 ms
65,024 KB
testcase_25 AC 56 ms
63,232 KB
testcase_26 AC 72 ms
76,928 KB
testcase_27 AC 153 ms
89,600 KB
testcase_28 AC 104 ms
82,432 KB
testcase_29 AC 67 ms
69,248 KB
testcase_30 AC 110 ms
83,328 KB
testcase_31 AC 122 ms
86,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
N,K=map(int,input().split())
C=[0]+list(map(int,input().split()))

X=[]
for i in range(10):
    X+=[i]*C[i]

D={}
M=[]
k=0
for t in product(*[range(C[i]+1) for i in range(10)]):
    D[t]=k
    M.append(t)
    k+=1

DP=[[0]*K for _ in range(k)]
DP[0][0]=1

for S in range(k):
    t=M[S]
    l=list(t)
    for r in range(10):
        if t[r]+1<=C[r]:
            l[r]+=1
            T=D[tuple(l)]
            for m in range(K):
                DP[T][(10*m+r)%K]+=DP[S][m]
            l[r]-=1

print(DP[-1][0])
0