結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー lloyzlloyz
提出日時 2021-12-27 23:40:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,082 ms / 3,000 ms
コード長 596 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 205,184 KB
最終ジャッジ日時 2024-10-01 10:27:31
合計ジャッジ時間 23,924 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 50 ms
62,848 KB
testcase_04 AC 43 ms
51,712 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 38 ms
51,456 KB
testcase_07 AC 41 ms
57,216 KB
testcase_08 AC 41 ms
57,472 KB
testcase_09 AC 49 ms
62,080 KB
testcase_10 AC 48 ms
61,184 KB
testcase_11 AC 49 ms
61,440 KB
testcase_12 AC 47 ms
60,544 KB
testcase_13 AC 48 ms
61,568 KB
testcase_14 AC 1,395 ms
198,784 KB
testcase_15 AC 2,056 ms
204,928 KB
testcase_16 AC 2,073 ms
204,672 KB
testcase_17 AC 2,082 ms
204,672 KB
testcase_18 AC 2,055 ms
204,416 KB
testcase_19 AC 2,043 ms
205,056 KB
testcase_20 AC 413 ms
205,184 KB
testcase_21 AC 471 ms
189,184 KB
testcase_22 AC 571 ms
202,368 KB
testcase_23 AC 1,178 ms
202,496 KB
testcase_24 AC 897 ms
202,240 KB
testcase_25 AC 781 ms
201,216 KB
testcase_26 AC 51 ms
63,744 KB
testcase_27 AC 1,475 ms
168,832 KB
testcase_28 AC 747 ms
115,328 KB
testcase_29 AC 690 ms
116,096 KB
testcase_30 AC 1,006 ms
134,400 KB
testcase_31 AC 1,488 ms
168,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n, k = map(int, input().split())
C = list(map(int, input().split()))
L = []
for i in range(9):
    L += [i + 1] * C[i]

DP = [[0] * k for _ in range(1 << n)]
DP[0][0] = 1
for bit in range(1 << n):
    for i in range(k):
        if DP[bit][i] == 0:
            continue
        for j in range(n):
            if bit & (1 << j):
                continue
            r = (10 * i + L[j]) % k
            nbit = bit | (1 << j)
            DP[nbit][r] += DP[bit][i]
ans = DP[-1][0]
for i in range(9):
    for j in range(1, C[i] + 1):
        ans //= j
print(ans)
0