結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー lloyzlloyz
提出日時 2021-12-27 23:38:32
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 735 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 205,112 KB
最終ジャッジ日時 2024-10-01 10:25:09
合計ジャッジ時間 35,256 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,944 KB
testcase_01 AC 39 ms
52,684 KB
testcase_02 AC 38 ms
52,792 KB
testcase_03 AC 52 ms
64,232 KB
testcase_04 AC 39 ms
53,160 KB
testcase_05 AC 37 ms
53,148 KB
testcase_06 AC 38 ms
53,144 KB
testcase_07 AC 40 ms
58,076 KB
testcase_08 AC 40 ms
58,020 KB
testcase_09 AC 48 ms
63,084 KB
testcase_10 AC 47 ms
62,608 KB
testcase_11 AC 47 ms
63,404 KB
testcase_12 AC 44 ms
60,944 KB
testcase_13 AC 44 ms
62,528 KB
testcase_14 AC 2,024 ms
199,052 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 490 ms
204,928 KB
testcase_21 AC 611 ms
189,312 KB
testcase_22 AC 819 ms
202,752 KB
testcase_23 AC 1,680 ms
202,496 KB
testcase_24 AC 1,198 ms
202,692 KB
testcase_25 AC 1,051 ms
201,032 KB
testcase_26 AC 58 ms
66,304 KB
testcase_27 AC 2,475 ms
169,052 KB
testcase_28 AC 1,204 ms
115,840 KB
testcase_29 AC 1,077 ms
116,388 KB
testcase_30 AC 1,600 ms
134,656 KB
testcase_31 AC 2,332 ms
168,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

if __name__ == '__main__':
    main()
0