結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー rlangevinrlangevin
提出日時 2023-04-04 00:39:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 974 ms / 3,000 ms
コード長 497 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 203,980 KB
最終ジャッジ日時 2024-09-25 04:38:38
合計ジャッジ時間 14,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,068 KB
testcase_01 AC 37 ms
52,076 KB
testcase_02 AC 37 ms
53,212 KB
testcase_03 AC 59 ms
68,016 KB
testcase_04 AC 38 ms
52,404 KB
testcase_05 AC 37 ms
52,800 KB
testcase_06 AC 37 ms
52,336 KB
testcase_07 AC 41 ms
58,208 KB
testcase_08 AC 47 ms
61,696 KB
testcase_09 AC 52 ms
64,724 KB
testcase_10 AC 45 ms
62,012 KB
testcase_11 AC 51 ms
64,548 KB
testcase_12 AC 48 ms
62,812 KB
testcase_13 AC 46 ms
61,132 KB
testcase_14 AC 956 ms
194,328 KB
testcase_15 AC 974 ms
200,908 KB
testcase_16 AC 954 ms
200,352 KB
testcase_17 AC 957 ms
200,576 KB
testcase_18 AC 957 ms
200,896 KB
testcase_19 AC 968 ms
203,980 KB
testcase_20 AC 707 ms
201,772 KB
testcase_21 AC 716 ms
184,208 KB
testcase_22 AC 725 ms
198,404 KB
testcase_23 AC 786 ms
196,776 KB
testcase_24 AC 759 ms
197,020 KB
testcase_25 AC 756 ms
195,712 KB
testcase_26 AC 64 ms
67,584 KB
testcase_27 AC 688 ms
165,888 KB
testcase_28 AC 318 ms
110,976 KB
testcase_29 AC 303 ms
112,128 KB
testcase_30 AC 461 ms
133,468 KB
testcase_31 AC 653 ms
163,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(n, k):
    return n * K + k

N, K = map(int, input().split())
C = list(map(int, input().split()))
D = []
for i in range(9):
    D.extend([i + 1] * C[i])
    
N2 = 1 << N
dp = [0] * (N2 * K)
dp[0] = 1
for s in range(N2):
    for j in range(N):
        if (s >> j) & 1:
            continue
        if j and (s >> (j - 1)) & 1 == 0 and (D[j - 1] == D[j]):
            continue
        for k in range(K):
            dp[f(s|(1<<j), (k*10 + D[j])%K)] += dp[f(s, k)]
print(dp[f(N2-1,0)])         
0