結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー tobusakanatobusakana
提出日時 2022-10-23 17:24:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,137 ms / 3,000 ms
コード長 884 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 205,136 KB
最終ジャッジ日時 2024-07-02 08:36:49
合計ジャッジ時間 23,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,068 KB
testcase_01 AC 33 ms
53,360 KB
testcase_02 AC 33 ms
52,520 KB
testcase_03 AC 45 ms
64,092 KB
testcase_04 AC 33 ms
52,488 KB
testcase_05 AC 33 ms
53,484 KB
testcase_06 AC 33 ms
53,464 KB
testcase_07 AC 37 ms
58,608 KB
testcase_08 AC 36 ms
58,372 KB
testcase_09 AC 45 ms
63,304 KB
testcase_10 AC 44 ms
62,148 KB
testcase_11 AC 43 ms
62,596 KB
testcase_12 AC 42 ms
60,964 KB
testcase_13 AC 43 ms
63,064 KB
testcase_14 AC 1,363 ms
199,456 KB
testcase_15 AC 2,099 ms
204,952 KB
testcase_16 AC 2,080 ms
205,080 KB
testcase_17 AC 2,109 ms
205,136 KB
testcase_18 AC 2,137 ms
205,092 KB
testcase_19 AC 2,080 ms
205,060 KB
testcase_20 AC 386 ms
204,992 KB
testcase_21 AC 476 ms
189,752 KB
testcase_22 AC 545 ms
203,044 KB
testcase_23 AC 1,137 ms
203,056 KB
testcase_24 AC 877 ms
203,328 KB
testcase_25 AC 771 ms
201,424 KB
testcase_26 AC 46 ms
65,028 KB
testcase_27 AC 1,508 ms
169,524 KB
testcase_28 AC 749 ms
115,612 KB
testcase_29 AC 678 ms
116,740 KB
testcase_30 AC 1,003 ms
134,992 KB
testcase_31 AC 1,499 ms
168,604 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] * 14
for i in range(1, 14):
  perm[i] = perm[i - 1] * i
  
div = 1
for c in C:
  if c > 1:
    div *= perm[c]
    
print(dp[-1][0] // div)
0