結果

問題 No.1085 桁和の桁和
ユーザー chineristACchineristAC
提出日時 2020-06-19 21:49:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 884 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 90,752 KB
最終ジャッジ日時 2024-11-06 17:32:21
合計ジャッジ時間 6,653 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 41 ms
58,240 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 37 ms
52,344 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 37 ms
52,252 KB
testcase_11 AC 41 ms
52,356 KB
testcase_12 AC 49 ms
60,032 KB
testcase_13 AC 85 ms
77,696 KB
testcase_14 AC 121 ms
81,212 KB
testcase_15 AC 181 ms
88,268 KB
testcase_16 AC 179 ms
88,448 KB
testcase_17 AC 131 ms
81,664 KB
testcase_18 AC 90 ms
79,136 KB
testcase_19 AC 168 ms
87,052 KB
testcase_20 AC 38 ms
52,480 KB
testcase_21 AC 133 ms
83,192 KB
testcase_22 AC 167 ms
86,400 KB
testcase_23 AC 65 ms
73,216 KB
testcase_24 AC 55 ms
64,896 KB
testcase_25 AC 124 ms
82,412 KB
testcase_26 AC 192 ms
88,668 KB
testcase_27 AC 162 ms
86,188 KB
testcase_28 AC 203 ms
90,496 KB
testcase_29 AC 139 ms
83,716 KB
testcase_30 AC 137 ms
83,328 KB
testcase_31 AC 192 ms
88,300 KB
testcase_32 AC 150 ms
84,476 KB
testcase_33 AC 287 ms
90,552 KB
testcase_34 AC 281 ms
90,624 KB
testcase_35 AC 279 ms
90,572 KB
testcase_36 AC 284 ms
90,496 KB
testcase_37 AC 289 ms
90,496 KB
testcase_38 AC 280 ms
90,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=input()
D=int(input())
N=len(T)
mod=10**9+7

if D==0:
    for i in range(N):
        if T[i]!="0" and T[i]!="?":
            print(0)
            break
    else:
        print(1)
else:
    dp=[[0 for i in range(9)] for j in range(N)]
    if T[0]=="?":
        for j in range(10):
            dp[0][j%9]+=1
    else:
        dp[0][int(T[0])%9]=1
    for i in range(1,N):
        for j in range(9):
            if T[i]=="?":
                for k in range(10):
                    dp[i][(j+k)%9]+=dp[i-1][j]
                    dp[i][(j+k)%9]%=mod
            else:
                dp[i][(j+int(T[i]))%9]+=dp[i-1][j]
                dp[i][(j+int(T[i]))%9]%=mod
    ans=dp[-1][D%9]
    if D!=9:
        print(ans)
    else:
        for i in range(N):
            if T[i]!="0" and T[i]!="?":
                print(ans)
                break
        else:
            print((ans-1)%mod)
0