結果

問題 No.1085 桁和の桁和
ユーザー uni_pythonuni_python
提出日時 2020-06-20 13:08:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,321 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 96,384 KB
最終ジャッジ日時 2024-07-23 00:44:56
合計ジャッジ時間 6,377 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 44 ms
57,856 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 47 ms
51,968 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 36 ms
52,096 KB
testcase_11 AC 35 ms
52,096 KB
testcase_12 WA -
testcase_13 RE -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 169 ms
94,336 KB
testcase_17 AC 107 ms
84,480 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 44 ms
61,312 KB
testcase_21 AC 136 ms
86,912 KB
testcase_22 AC 154 ms
91,756 KB
testcase_23 AC 61 ms
72,704 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 148 ms
92,032 KB
testcase_28 AC 190 ms
96,000 KB
testcase_29 AC 124 ms
87,680 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

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()
        
    T2=[]
    for i in range(N):
        if T[i]!="0":
            T2.append(T[i])
            
    if T2==[]:
        print(0)
        exit()
    
    N=len(T2)
    dp=[[0]*9 for _ in range(N+1)]
    #dp[i][j]はi番目まで見て桁和の桁和がj

    
    t=T2[0]
    if t=="?":
        for j in range(9):
            dp[1][j]=1
    else:
        dp[1][int(t)]=1
    
    for i in range(1,N):
        t=T2[i]
        if t=="?":
            for j in range(9):
                dp[i][j]=dp[i][j]%mod
                for k in range(10):#?をkにする
                    dp[i+1][(j+k)%9]+=dp[i][j]
                    
                
        else:
            t=int(t)
            for j in range(9):
                dp[i][j]=dp[i][j]%mod
                dp[i+1][(j+t)%9]=dp[i][j]
                
    print(dp[-1][D%9]%mod)
    
            
            



main()
0