結果

問題 No.1085 桁和の桁和
ユーザー chineristACchineristAC
提出日時 2020-06-19 21:40:13
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 697 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 90,684 KB
最終ジャッジ日時 2024-07-23 00:00:42
合計ジャッジ時間 4,732 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,472 KB
testcase_01 AC 35 ms
52,744 KB
testcase_02 AC 36 ms
53,080 KB
testcase_03 AC 38 ms
53,552 KB
testcase_04 AC 41 ms
58,760 KB
testcase_05 AC 36 ms
53,384 KB
testcase_06 AC 37 ms
53,076 KB
testcase_07 AC 36 ms
53,576 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 37 ms
52,136 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 77 ms
77,924 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 177 ms
88,320 KB
testcase_17 AC 116 ms
81,820 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 35 ms
53,504 KB
testcase_21 AC 128 ms
83,620 KB
testcase_22 AC 158 ms
86,560 KB
testcase_23 AC 65 ms
73,864 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 163 ms
86,736 KB
testcase_28 AC 202 ms
90,684 KB
testcase_29 AC 134 ms
84,084 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
権限があれば一括ダウンロードができます

ソースコード

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(9):
            dp[0][i]=1
        dp[0][0]=2
    else:
        dp[0][int(T[0])]=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
    print(dp[-1][D%9])
0