結果

問題 No.1085 桁和の桁和
ユーザー tanon710tanon710
提出日時 2020-06-19 23:05:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 714 bytes
コンパイル時間 3,097 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 820,496 KB
最終ジャッジ日時 2024-07-23 00:39:15
合計ジャッジ時間 7,957 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,284 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 39 ms
57,728 KB
testcase_05 AC 36 ms
52,072 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 35 ms
52,224 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 36 ms
51,840 KB
testcase_11 AC 35 ms
52,480 KB
testcase_12 AC 46 ms
61,568 KB
testcase_13 WA -
testcase_14 TLE -
testcase_15 MLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
t=input()
d=int(input())
tmp=0
cnt=0
for c in t:
    if c=='?':
        cnt+=1
    else:
        tmp+=int(c)
if d!=0:
    if tmp!=0 and tmp%9==0:
        tmp=9
    dp=[[0]*10 for _ in range(cnt+1)]
    dp[0][0]=1
    for i in range(1,cnt+1):
        for j in range(10):
            for k in range(10):
                if j+k==0:
                    dp[i][0]+=dp[i-1][j]
                elif j+k==9 or j+k==18:
                    dp[i][9]+=dp[i-1][j]
                else:
                    dp[i][(j+k)%9]+=dp[i-1][j]
    ans=0
    for i in range(10):
        if tmp+i==d or tmp+i==d+9:
            ans+=dp[-1][i]
    print(ans%mod)
if d==0:
    if tmp!=0:
        print(0)
    else:
        print(1)
0