結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー lloyzlloyz
提出日時 2021-12-27 23:13:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 723 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 205,568 KB
最終ジャッジ日時 2024-10-01 09:55:51
合計ジャッジ時間 35,031 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,436 KB
testcase_01 AC 40 ms
53,156 KB
testcase_02 AC 39 ms
52,016 KB
testcase_03 AC 60 ms
69,056 KB
testcase_04 AC 36 ms
52,500 KB
testcase_05 AC 36 ms
52,892 KB
testcase_06 AC 35 ms
52,272 KB
testcase_07 AC 41 ms
58,420 KB
testcase_08 AC 39 ms
58,356 KB
testcase_09 AC 50 ms
64,492 KB
testcase_10 AC 48 ms
63,144 KB
testcase_11 AC 47 ms
63,564 KB
testcase_12 AC 46 ms
62,216 KB
testcase_13 AC 51 ms
64,016 KB
testcase_14 AC 2,092 ms
199,136 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 601 ms
204,960 KB
testcase_21 AC 663 ms
189,440 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,209 ms
202,880 KB
testcase_25 WA -
testcase_26 AC 88 ms
77,312 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

DP = [[0 for _ in range(k)] for _ in range(1 << n)]
DP[0][0] = 1
for bit in range(1 << n):
    seen = set()
    digit = 0
    for i in range(n):
        if (bit >> i) & 1:
            seen.add(i)
            digit += 1
    for i in range(k):
        if DP[bit][i] != 0:
            for j in range(n):
                if j in seen:
                    continue
                num = pow(10, digit) * L[j]
                r = (i + num) % k
                DP[bit | (1 << j)][r] += DP[bit][i]
ans = DP[-1][0]
for i in range(9):
    if C[i] != 0:
        ans //= C[i]
print(ans)
0