結果

問題 No.1085 桁和の桁和
ユーザー wolgnikwolgnik
提出日時 2020-06-19 22:21:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,010 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 95,968 KB
最終ジャッジ日時 2024-11-06 17:38:02
合計ジャッジ時間 16,436 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 44 ms
53,120 KB
testcase_04 AC 946 ms
95,248 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 42 ms
52,224 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 42 ms
52,352 KB
testcase_12 AC 58 ms
64,128 KB
testcase_13 AC 145 ms
78,720 KB
testcase_14 AC 269 ms
84,096 KB
testcase_15 AC 532 ms
93,152 KB
testcase_16 AC 515 ms
92,880 KB
testcase_17 AC 292 ms
84,608 KB
testcase_18 AC 190 ms
81,024 KB
testcase_19 AC 486 ms
91,324 KB
testcase_20 AC 482 ms
91,448 KB
testcase_21 AC 326 ms
86,784 KB
testcase_22 AC 451 ms
90,128 KB
testcase_23 AC 119 ms
77,568 KB
testcase_24 AC 86 ms
76,288 KB
testcase_25 AC 304 ms
85,760 KB
testcase_26 AC 547 ms
93,448 KB
testcase_27 AC 437 ms
90,132 KB
testcase_28 AC 582 ms
95,820 KB
testcase_29 AC 360 ms
87,224 KB
testcase_30 AC 313 ms
86,656 KB
testcase_31 AC 498 ms
92,748 KB
testcase_32 AC 374 ms
88,064 KB
testcase_33 AC 999 ms
95,968 KB
testcase_34 AC 1,006 ms
95,836 KB
testcase_35 AC 1,001 ms
95,836 KB
testcase_36 AC 993 ms
95,836 KB
testcase_37 AC 1,010 ms
95,828 KB
testcase_38 AC 1,003 ms
95,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
S = list(input())[: -1]
D = int(input())
mod = 10 ** 9 + 7
dp = [[0] * (10) for _ in range(len(S) + 1)]
dp[0][0] = 1

def digitsum(x):
  if x <= 9: return x
  s = str(x)
  y = 0
  for i in s: y += int(i)
  return digitsum(y)

for i in range(len(S)):
  for j in range(10):
    if S[i] != "?":
      x = digitsum(j + int(S[i]))
      dp[i + 1][x] += dp[i][j]
      dp[i + 1][x] %= mod
    else:
      for k in range(10):
        x = digitsum(j + k)
        dp[i + 1][x] += dp[i][j]
        dp[i + 1][x] %= mod
print(dp[-1][D])
0