結果

問題 No.1085 桁和の桁和
ユーザー tyawanmusityawanmusi
提出日時 2020-01-01 16:27:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 446 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,392 KB
最終ジャッジ日時 2024-07-22 23:59:05
合計ジャッジ時間 6,491 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 295 ms
90,880 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 41 ms
51,712 KB
testcase_09 AC 41 ms
51,712 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 50 ms
60,032 KB
testcase_13 AC 74 ms
67,840 KB
testcase_14 AC 110 ms
78,848 KB
testcase_15 AC 166 ms
82,816 KB
testcase_16 AC 168 ms
82,688 KB
testcase_17 AC 118 ms
78,976 KB
testcase_18 AC 85 ms
71,296 KB
testcase_19 AC 155 ms
82,048 KB
testcase_20 WA -
testcase_21 AC 128 ms
79,744 KB
testcase_22 AC 146 ms
81,408 KB
testcase_23 AC 67 ms
66,304 KB
testcase_24 WA -
testcase_25 AC 118 ms
79,232 KB
testcase_26 AC 169 ms
82,944 KB
testcase_27 AC 151 ms
81,536 KB
testcase_28 AC 179 ms
83,968 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 167 ms
82,944 KB
testcase_32 AC 135 ms
80,640 KB
testcase_33 AC 288 ms
91,392 KB
testcase_34 AC 285 ms
91,136 KB
testcase_35 AC 296 ms
91,136 KB
testcase_36 AC 285 ms
91,392 KB
testcase_37 AC 289 ms
91,392 KB
testcase_38 AC 289 ms
91,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
d=int(input())
mod=10**9+7
digit_sum=0
blind_count=0
for i in range(len(s)):
  if s[i]=="?":
    blind_count+=1
  else:
    digit_sum+=int(s[i])
    while digit_sum>9:
      digit_sum-=9

dp=[10*[0]for _ in range(blind_count+1)]
dp[0][0]=1
for i in range(1,blind_count+1):
  for j in range(10):
    for k in range(10):
      jk=j+k
      if jk>9:
        jk-=9
      dp[i][jk]+=dp[i-1][j]
      dp[i][jk]%=mod

print(dp[blind_count][d])
0