結果

問題 No.1085 桁和の桁和
ユーザー uni_pythonuni_python
提出日時 2020-06-20 12:52:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,060 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 91,392 KB
最終ジャッジ日時 2024-07-23 00:44:49
合計ジャッジ時間 5,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 42 ms
58,112 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 WA -
testcase_10 AC 42 ms
52,480 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 74 ms
77,900 KB
testcase_14 AC 105 ms
81,616 KB
testcase_15 AC 169 ms
88,704 KB
testcase_16 AC 163 ms
88,704 KB
testcase_17 AC 111 ms
81,536 KB
testcase_18 AC 87 ms
79,064 KB
testcase_19 AC 154 ms
87,552 KB
testcase_20 AC 46 ms
60,928 KB
testcase_21 AC 118 ms
83,200 KB
testcase_22 AC 145 ms
86,144 KB
testcase_23 AC 62 ms
71,552 KB
testcase_24 AC 53 ms
63,104 KB
testcase_25 AC 118 ms
82,508 KB
testcase_26 AC 172 ms
89,452 KB
testcase_27 AC 146 ms
86,528 KB
testcase_28 AC 185 ms
91,392 KB
testcase_29 AC 124 ms
83,960 KB
testcase_30 AC 118 ms
83,200 KB
testcase_31 AC 165 ms
88,704 KB
testcase_32 AC 130 ms
84,608 KB
testcase_33 AC 259 ms
91,008 KB
testcase_34 AC 258 ms
91,008 KB
testcase_35 AC 256 ms
90,624 KB
testcase_36 AC 260 ms
90,880 KB
testcase_37 AC 259 ms
90,880 KB
testcase_38 AC 256 ms
90,752 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]*9 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(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