結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 37 ms
52,756 KB
testcase_04 AC 42 ms
58,496 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 35 ms
51,712 KB
testcase_09 WA -
testcase_10 AC 37 ms
51,968 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 79 ms
77,908 KB
testcase_14 AC 111 ms
81,664 KB
testcase_15 AC 174 ms
88,576 KB
testcase_16 AC 173 ms
88,576 KB
testcase_17 AC 116 ms
81,768 KB
testcase_18 AC 87 ms
79,104 KB
testcase_19 AC 167 ms
87,168 KB
testcase_20 AC 37 ms
52,608 KB
testcase_21 AC 129 ms
83,532 KB
testcase_22 AC 161 ms
86,528 KB
testcase_23 AC 64 ms
73,216 KB
testcase_24 AC 54 ms
65,408 KB
testcase_25 AC 122 ms
82,432 KB
testcase_26 AC 183 ms
88,960 KB
testcase_27 AC 157 ms
86,144 KB
testcase_28 AC 200 ms
90,888 KB
testcase_29 AC 132 ms
83,840 KB
testcase_30 AC 124 ms
83,456 KB
testcase_31 AC 175 ms
88,772 KB
testcase_32 AC 143 ms
84,452 KB
testcase_33 AC 272 ms
90,752 KB
testcase_34 AC 275 ms
90,624 KB
testcase_35 AC 276 ms
90,768 KB
testcase_36 AC 278 ms
91,008 KB
testcase_37 AC 276 ms
90,624 KB
testcase_38 AC 272 ms
90,964 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
    print(dp[-1][D%9])
0