結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-30 23:34:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 627 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 212,088 KB
最終ジャッジ日時 2024-09-16 03:45:35
合計ジャッジ時間 6,901 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,016 KB
testcase_01 AC 36 ms
53,160 KB
testcase_02 AC 36 ms
53,024 KB
testcase_03 AC 56 ms
70,192 KB
testcase_04 AC 37 ms
54,220 KB
testcase_05 AC 36 ms
52,456 KB
testcase_06 AC 36 ms
52,960 KB
testcase_07 AC 39 ms
58,092 KB
testcase_08 AC 40 ms
58,656 KB
testcase_09 AC 48 ms
65,476 KB
testcase_10 AC 48 ms
63,732 KB
testcase_11 AC 48 ms
64,772 KB
testcase_12 AC 48 ms
63,156 KB
testcase_13 AC 50 ms
63,576 KB
testcase_14 AC 1,346 ms
199,376 KB
testcase_15 TLE -
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 #

n,k = map(int,input().split())
C = list(map(int,input().split()))
l = []
for i,c in enumerate(C,1):
    for j in range(c):
        l.append(i)

ten = [1]
for i in range(n+1):
    ten.append(ten[-1]*10%k)

dp = [[0]*k for i in range(1<<n)]
dp[0][0] = 1
for i in range(1<<n):
    for j in range(k):
        if dp[i][j] == 0:
            continue
        b = bin(i).count("1")
        for t in range(n):
            if i >> t & 1:
                continue
            dp[i|1<<t][(j+ten[t]*l[b])%k] += dp[i][j]
ans = dp[-1][0]
fact = [1]
for i in range(1,n+1):
    fact.append(fact[-1]*i)
for c in C:
    ans //= fact[c]
print(ans)
0