結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー ああいいああいい
提出日時 2022-03-02 10:42:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,194 ms / 3,000 ms
コード長 535 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 205,292 KB
最終ジャッジ日時 2024-07-16 04:58:24
合計ジャッジ時間 19,004 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,340 KB
testcase_01 AC 35 ms
53,056 KB
testcase_02 AC 37 ms
52,800 KB
testcase_03 AC 48 ms
62,488 KB
testcase_04 AC 35 ms
52,320 KB
testcase_05 AC 34 ms
53,112 KB
testcase_06 AC 35 ms
53,312 KB
testcase_07 AC 35 ms
53,408 KB
testcase_08 AC 39 ms
60,104 KB
testcase_09 AC 46 ms
62,236 KB
testcase_10 AC 47 ms
60,140 KB
testcase_11 AC 43 ms
61,456 KB
testcase_12 AC 41 ms
59,772 KB
testcase_13 AC 44 ms
61,180 KB
testcase_14 AC 1,136 ms
199,184 KB
testcase_15 AC 1,188 ms
204,984 KB
testcase_16 AC 1,192 ms
205,292 KB
testcase_17 AC 1,185 ms
204,844 KB
testcase_18 AC 1,186 ms
204,824 KB
testcase_19 AC 1,192 ms
205,016 KB
testcase_20 AC 1,194 ms
205,060 KB
testcase_21 AC 1,050 ms
183,816 KB
testcase_22 AC 1,161 ms
202,728 KB
testcase_23 AC 1,169 ms
202,652 KB
testcase_24 AC 1,174 ms
202,636 KB
testcase_25 AC 1,154 ms
201,476 KB
testcase_26 AC 49 ms
63,608 KB
testcase_27 AC 877 ms
160,876 KB
testcase_28 AC 399 ms
114,700 KB
testcase_29 AC 414 ms
114,816 KB
testcase_30 AC 586 ms
135,152 KB
testcase_31 AC 889 ms
160,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
c = list(map(int,input().split()))
l = []
for i in range(9):
    for _ in range(c[i]):
        l.append(i+1)
dp = [[0] * K for _ in range(1 << N)]
dp[0][0] = 1
for bit in range(1,1 << N):
    for i in range(N):
        mask = 1 << i
        if mask & bit == 0:
            continue
        for j in range(K):
            dp[bit][(j*10+l[i])%K] += dp[bit ^ mask][j]
ans = dp[-1][0]
fact = [1] * (N+1)
for i in range(2,N+1):
    fact[i] = fact[i-1] * i
for i in range(9):
    ans //= fact[c[i]]
print(ans)
0