結果

問題 No.1085 桁和の桁和
ユーザー googol_S0googol_S0
提出日時 2020-06-19 21:41:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 507 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 91,268 KB
最終ジャッジ日時 2024-07-23 00:01:09
合計ジャッジ時間 4,030 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 41 ms
58,240 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 WA -
testcase_10 AC 35 ms
51,840 KB
testcase_11 WA -
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 58 ms
72,448 KB
testcase_14 AC 74 ms
81,664 KB
testcase_15 AC 95 ms
89,192 KB
testcase_16 AC 96 ms
89,076 KB
testcase_17 AC 76 ms
82,156 KB
testcase_18 AC 68 ms
79,360 KB
testcase_19 AC 93 ms
87,592 KB
testcase_20 AC 37 ms
52,736 KB
testcase_21 AC 80 ms
83,712 KB
testcase_22 AC 89 ms
86,784 KB
testcase_23 AC 57 ms
68,608 KB
testcase_24 AC 52 ms
63,872 KB
testcase_25 AC 79 ms
82,944 KB
testcase_26 AC 101 ms
90,020 KB
testcase_27 AC 88 ms
86,784 KB
testcase_28 AC 99 ms
90,996 KB
testcase_29 AC 82 ms
83,924 KB
testcase_30 AC 78 ms
83,584 KB
testcase_31 AC 94 ms
89,152 KB
testcase_32 AC 84 ms
85,124 KB
testcase_33 AC 98 ms
90,988 KB
testcase_34 AC 97 ms
90,984 KB
testcase_35 AC 98 ms
91,168 KB
testcase_36 AC 98 ms
91,244 KB
testcase_37 AC 98 ms
91,240 KB
testcase_38 AC 97 ms
91,268 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]
if D==9 and set(T)=={'0','?'}:
  DP[N][D%9]=(DP[N][D%9]-1)%mod
print(DP[N][D%9])
0