結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-30 23:39:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,532 ms / 3,000 ms
コード長 558 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 205,440 KB
最終ジャッジ日時 2024-09-16 03:52:29
合計ジャッジ時間 20,325 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 57 ms
66,048 KB
testcase_04 AC 35 ms
51,456 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 40 ms
57,984 KB
testcase_09 AC 49 ms
62,848 KB
testcase_10 AC 44 ms
60,672 KB
testcase_11 AC 45 ms
60,672 KB
testcase_12 AC 42 ms
59,520 KB
testcase_13 AC 46 ms
61,568 KB
testcase_14 AC 1,148 ms
199,168 KB
testcase_15 AC 1,507 ms
205,440 KB
testcase_16 AC 1,525 ms
205,148 KB
testcase_17 AC 1,507 ms
205,184 KB
testcase_18 AC 1,532 ms
205,056 KB
testcase_19 AC 1,515 ms
205,184 KB
testcase_20 AC 755 ms
205,184 KB
testcase_21 AC 742 ms
189,440 KB
testcase_22 AC 837 ms
202,752 KB
testcase_23 AC 1,099 ms
202,880 KB
testcase_24 AC 958 ms
202,752 KB
testcase_25 AC 878 ms
201,344 KB
testcase_26 AC 58 ms
72,832 KB
testcase_27 AC 1,127 ms
169,216 KB
testcase_28 AC 597 ms
115,840 KB
testcase_29 AC 538 ms
116,616 KB
testcase_30 AC 740 ms
134,784 KB
testcase_31 AC 1,108 ms
168,704 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)

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*10+l[t])%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