結果

問題 No.1085 桁和の桁和
ユーザー uni_pythonuni_python
提出日時 2020-06-20 15:48:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 1,340 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 91,976 KB
最終ジャッジ日時 2024-11-06 17:42:29
合計ジャッジ時間 6,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 45 ms
57,984 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 41 ms
51,712 KB
testcase_11 AC 42 ms
52,096 KB
testcase_12 AC 48 ms
59,904 KB
testcase_13 AC 84 ms
77,568 KB
testcase_14 AC 120 ms
81,536 KB
testcase_15 AC 190 ms
89,600 KB
testcase_16 AC 188 ms
89,216 KB
testcase_17 AC 124 ms
82,176 KB
testcase_18 AC 99 ms
79,104 KB
testcase_19 AC 177 ms
87,936 KB
testcase_20 AC 48 ms
60,928 KB
testcase_21 AC 146 ms
83,328 KB
testcase_22 AC 172 ms
86,912 KB
testcase_23 AC 75 ms
76,672 KB
testcase_24 AC 58 ms
65,280 KB
testcase_25 AC 133 ms
82,560 KB
testcase_26 AC 192 ms
89,600 KB
testcase_27 AC 170 ms
87,168 KB
testcase_28 AC 216 ms
91,648 KB
testcase_29 AC 143 ms
84,224 KB
testcase_30 AC 134 ms
83,584 KB
testcase_31 AC 189 ms
89,320 KB
testcase_32 AC 173 ms
84,992 KB
testcase_33 AC 302 ms
91,648 KB
testcase_34 AC 301 ms
91,776 KB
testcase_35 AC 303 ms
91,648 KB
testcase_36 AC 313 ms
91,776 KB
testcase_37 AC 304 ms
91,976 KB
testcase_38 AC 305 ms
91,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    T=input()
    D=I()
    N=len(T)
    
    if D==0:
        S=0
        cnt=0
        for i in range(N):
            if T[i]=="?":
                cnt+=1
            else:
                S+=int(T[i])
        if S==0:
            print(1)
        else:
            print(0)
        exit()
    
    
    dp=[[0]*10 for _ in range(N+1)]
    #dp[i][j]はi番目まで見て桁和の桁和がj
    
    dp[0][0]=1
    
    for i in range(N):
        t=T[i]
        if t=="?":
            for j in range(10):
                dp[i][j]=dp[i][j]%mod
                for k in range(10):#?をkにする
                    nxt=(j+k)
                    if nxt>=10:
                        nxt-=9
                    dp[i+1][nxt]+=dp[i][j]
                    
                
        else:
            t=int(t)
            for j in range(10):
                dp[i][j]=dp[i][j]%mod
                nxt=j+t
                if nxt>=10:
                    nxt-=9
                dp[i+1][nxt]+=dp[i][j]
                # print(i,j,t,nxt,dp[i][j],dp[i+1][nxt])
                
    print(dp[-1][D%10]%mod)
    
    # for i in range(N+1):
    #     print(dp[i])
    
            
            



main()
0