結果

問題 No.1085 桁和の桁和
ユーザー googol_S0googol_S0
提出日時 2020-06-19 21:40:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 444 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 91,324 KB
最終ジャッジ日時 2024-07-23 00:00:46
合計ジャッジ時間 3,912 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,312 KB
testcase_01 AC 37 ms
52,864 KB
testcase_02 AC 37 ms
53,004 KB
testcase_03 AC 37 ms
52,004 KB
testcase_04 AC 41 ms
59,036 KB
testcase_05 AC 38 ms
53,008 KB
testcase_06 AC 37 ms
53,612 KB
testcase_07 AC 37 ms
53,344 KB
testcase_08 AC 36 ms
52,688 KB
testcase_09 WA -
testcase_10 AC 38 ms
52,484 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 60 ms
73,004 KB
testcase_14 AC 75 ms
81,788 KB
testcase_15 AC 97 ms
89,568 KB
testcase_16 AC 97 ms
89,284 KB
testcase_17 AC 76 ms
82,120 KB
testcase_18 AC 67 ms
79,536 KB
testcase_19 AC 92 ms
87,688 KB
testcase_20 AC 36 ms
53,028 KB
testcase_21 AC 79 ms
83,696 KB
testcase_22 AC 87 ms
87,176 KB
testcase_23 AC 56 ms
69,640 KB
testcase_24 AC 51 ms
64,660 KB
testcase_25 AC 79 ms
83,108 KB
testcase_26 AC 100 ms
89,636 KB
testcase_27 AC 90 ms
87,196 KB
testcase_28 AC 102 ms
91,072 KB
testcase_29 AC 82 ms
84,324 KB
testcase_30 AC 80 ms
84,144 KB
testcase_31 AC 94 ms
88,812 KB
testcase_32 AC 85 ms
85,072 KB
testcase_33 AC 98 ms
91,064 KB
testcase_34 AC 100 ms
91,188 KB
testcase_35 AC 99 ms
91,292 KB
testcase_36 AC 99 ms
91,320 KB
testcase_37 AC 98 ms
91,324 KB
testcase_38 AC 98 ms
91,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=input()
N=len(T)
D=int(input())
mod=10**9+7
if D==0:
  for i in range(N):
    if T[i]!='0' and T[i]!='?':
      print(0)
      exit()
  print(1)
  exit()
if set(T)==set([0]):
  print(0)
  exit()
DP=[[0]*9 for i in range(N+1)]
DP[0][0]=1
x=0
for i in range(N):
  if T[i]=='?':
    x=sum(DP[i])%mod
    for j in range(9):
      DP[i+1][j]=(x+DP[i][j])%mod
  else:
    for j in range(9):
      DP[i+1][(j+int(T[i]))%9]=DP[i][j]
print(DP[N][D%9])
0