結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー tobusakanatobusakana
提出日時 2022-10-23 17:25:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,326 ms / 3,000 ms
コード長 884 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 205,244 KB
最終ジャッジ日時 2024-07-02 08:37:29
合計ジャッジ時間 25,648 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,200 KB
testcase_01 AC 42 ms
52,816 KB
testcase_02 AC 39 ms
52,660 KB
testcase_03 AC 53 ms
64,108 KB
testcase_04 AC 39 ms
52,824 KB
testcase_05 AC 39 ms
52,616 KB
testcase_06 AC 38 ms
52,904 KB
testcase_07 AC 41 ms
57,676 KB
testcase_08 AC 42 ms
59,020 KB
testcase_09 AC 49 ms
62,556 KB
testcase_10 AC 50 ms
62,596 KB
testcase_11 AC 50 ms
63,292 KB
testcase_12 AC 48 ms
62,648 KB
testcase_13 AC 49 ms
62,368 KB
testcase_14 AC 1,496 ms
199,304 KB
testcase_15 AC 2,294 ms
205,016 KB
testcase_16 AC 2,296 ms
205,092 KB
testcase_17 AC 2,294 ms
204,704 KB
testcase_18 AC 2,290 ms
205,024 KB
testcase_19 AC 2,326 ms
204,812 KB
testcase_20 AC 428 ms
205,244 KB
testcase_21 AC 516 ms
189,636 KB
testcase_22 AC 611 ms
202,572 KB
testcase_23 AC 1,257 ms
202,496 KB
testcase_24 AC 938 ms
202,572 KB
testcase_25 AC 834 ms
201,728 KB
testcase_26 AC 52 ms
65,116 KB
testcase_27 AC 1,643 ms
169,048 KB
testcase_28 AC 824 ms
115,388 KB
testcase_29 AC 749 ms
116,424 KB
testcase_30 AC 1,117 ms
134,868 KB
testcase_31 AC 1,655 ms
168,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 14個の数のどれを使ったかの状態でDP
# ただし、重複ぶんを最後に割る

# dp[S][k] = 状態Sで、Kで割った余りがkである場合の数

import sys
readline = sys.stdin.readline
N,K = map(int,readline().split())
C = list(map(int,readline().split()))
X = []
for i in range(9):
  X += [(i + 1)] * (C[i])

dp = [[0] * K for i in range(1 << N)]

dp[0][0] = 1
for status in range(1 << N):
  for k in range(K): # スタートする状態
    if dp[status][k] == 0:
      continue
    for target in range(N): # 次に選ぶ数
      if (status >> target) & 1:
        continue
      next_status = status | (1 << target)
      next_k = (k * 10 + X[target]) % K
      dp[next_status][next_k] += dp[status][k]

perm = [1] * 15
for i in range(1, 15):
  perm[i] = perm[i - 1] * i
  
div = 1
for c in C:
  if c > 1:
    div *= perm[c]
    
print(dp[-1][0] // div)
0