結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
52,828 KB
testcase_04 AC 41 ms
58,624 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 WA -
testcase_10 AC 37 ms
51,840 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 75 ms
77,696 KB
testcase_14 AC 110 ms
81,728 KB
testcase_15 AC 175 ms
88,960 KB
testcase_16 AC 175 ms
88,320 KB
testcase_17 AC 115 ms
81,912 KB
testcase_18 AC 88 ms
79,200 KB
testcase_19 AC 168 ms
87,552 KB
testcase_20 AC 37 ms
52,736 KB
testcase_21 AC 129 ms
83,072 KB
testcase_22 AC 162 ms
86,528 KB
testcase_23 AC 63 ms
73,088 KB
testcase_24 AC 54 ms
65,536 KB
testcase_25 AC 122 ms
82,688 KB
testcase_26 AC 190 ms
88,932 KB
testcase_27 AC 159 ms
86,400 KB
testcase_28 AC 201 ms
90,620 KB
testcase_29 AC 132 ms
83,968 KB
testcase_30 AC 127 ms
83,200 KB
testcase_31 AC 180 ms
88,576 KB
testcase_32 AC 142 ms
84,528 KB
testcase_33 AC 272 ms
90,624 KB
testcase_34 AC 273 ms
90,872 KB
testcase_35 AC 270 ms
90,872 KB
testcase_36 AC 272 ms
90,872 KB
testcase_37 AC 278 ms
90,920 KB
testcase_38 AC 275 ms
90,908 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(9):
            dp[0][j]=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