結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-30 23:37:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,611 ms / 3,000 ms
コード長 623 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 205,312 KB
最終ジャッジ日時 2024-09-16 03:49:46
合計ジャッジ時間 18,682 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,872 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 58 ms
66,176 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 42 ms
58,240 KB
testcase_09 AC 49 ms
62,592 KB
testcase_10 AC 47 ms
60,800 KB
testcase_11 AC 45 ms
60,928 KB
testcase_12 AC 43 ms
59,648 KB
testcase_13 AC 48 ms
61,948 KB
testcase_14 AC 838 ms
199,084 KB
testcase_15 AC 1,356 ms
205,184 KB
testcase_16 AC 1,611 ms
205,312 KB
testcase_17 AC 1,377 ms
205,056 KB
testcase_18 AC 1,560 ms
205,312 KB
testcase_19 AC 1,421 ms
205,184 KB
testcase_20 AC 752 ms
205,184 KB
testcase_21 AC 677 ms
189,224 KB
testcase_22 AC 762 ms
202,708 KB
testcase_23 AC 1,075 ms
202,832 KB
testcase_24 AC 884 ms
202,700 KB
testcase_25 AC 628 ms
201,600 KB
testcase_26 AC 62 ms
73,216 KB
testcase_27 AC 902 ms
169,184 KB
testcase_28 AC 556 ms
115,964 KB
testcase_29 AC 443 ms
116,736 KB
testcase_30 AC 632 ms
135,168 KB
testcase_31 AC 1,168 ms
168,808 KB
権限があれば一括ダウンロードができます

ソースコード

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):
    b = bin(i).count("1")
    for t in range(n):
        if i >> t & 1:
            continue
        for j in range(k):
            if dp[i][j] == 0:
                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