結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー lloyzlloyz
提出日時 2021-12-27 23:23:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 905 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 207,012 KB
最終ジャッジ日時 2024-10-01 10:08:52
合計ジャッジ時間 24,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,772 KB
testcase_01 AC 37 ms
59,224 KB
testcase_02 AC 37 ms
60,084 KB
testcase_03 AC 58 ms
67,748 KB
testcase_04 AC 39 ms
60,100 KB
testcase_05 AC 39 ms
60,148 KB
testcase_06 AC 38 ms
59,192 KB
testcase_07 AC 39 ms
60,016 KB
testcase_08 AC 39 ms
60,144 KB
testcase_09 AC 47 ms
66,468 KB
testcase_10 AC 46 ms
66,024 KB
testcase_11 AC 45 ms
65,260 KB
testcase_12 AC 45 ms
63,716 KB
testcase_13 AC 46 ms
64,548 KB
testcase_14 AC 2,114 ms
200,380 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 474 ms
207,012 KB
testcase_21 AC 568 ms
191,456 KB
testcase_22 AC 718 ms
204,900 KB
testcase_23 AC 1,624 ms
204,828 KB
testcase_24 AC 1,141 ms
204,416 KB
testcase_25 AC 1,028 ms
202,752 KB
testcase_26 AC 60 ms
69,248 KB
testcase_27 AC 2,431 ms
170,880 KB
testcase_28 AC 1,239 ms
117,120 KB
testcase_29 AC 1,098 ms
118,144 KB
testcase_30 AC 1,682 ms
136,576 KB
testcase_31 AC 2,484 ms
170,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    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)

    popcount = [0 for _ in range(200000)]
    for i in range(1, 200000):
        popcount[i] = popcount[i // 2] + i % 2

    fact = [1]
    for i in range(1, n + 1):
        fact.append(fact[-1] * i)

    DP = [[0] * k for _ in range(1 << n)]
    DP[0][0] = 1
    for bit in range(1 << n):
        digit = popcount[bit]
        for i in range(k):
            if DP[bit][i] != 0:
                for j in range(n):
                    if (bit >> j) & 1:
                        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):
        ans //= fact[C[i]]
    print(ans)

main()
0