結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー minimumminimum
提出日時 2021-07-30 21:13:18
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 710 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 849,920 KB
最終ジャッジ日時 2024-09-15 22:21:18
合計ジャッジ時間 3,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 158 ms
81,792 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 49 ms
58,624 KB
testcase_08 AC 57 ms
62,080 KB
testcase_09 AC 149 ms
82,176 KB
testcase_10 AC 78 ms
68,096 KB
testcase_11 AC 103 ms
72,576 KB
testcase_12 AC 78 ms
67,072 KB
testcase_13 AC 86 ms
72,192 KB
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial

n, k = map(int, input().split())

c = list(map(int, input().split()))

d = []
for i in range(1, 10):
    for j in range(c[i - 1]):
        d.append(i)


dp = [[[0] * k for j in range(2 ** n)] for i in range(n + 1)]
dp[0][0][0] = 1

for i in range(n):
    now = d[i]
    for j in range(2 ** n):
        for x in range(n):
            if (j >> x) & 1 == 0:
                y = now * pow(10, x, k)
                y %= k
                for l in range(k):
                    dp[i + 1][j + (2 ** x)][(l + y) % k] += dp[i][j][l]
        for l in range(k):
            dp[i + 1][j][l] += dp[i][j][l]

ans = dp[n][2 ** n - 1][0]

for i in range(9):
    ans //= factorial(c[i])

print(ans)
0