結果

問題 No.1085 桁和の桁和
ユーザー shotoyooshotoyoo
提出日時 2021-06-19 00:14:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 77,436 KB
最終ジャッジ日時 2024-06-22 21:42:05
合計ジャッジ時間 3,910 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,352 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 35 ms
52,480 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 73 ms
76,416 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 31 ms
51,968 KB
testcase_07 AC 34 ms
52,224 KB
testcase_08 AC 34 ms
52,224 KB
testcase_09 AC 33 ms
51,968 KB
testcase_10 AC 33 ms
52,224 KB
testcase_11 AC 34 ms
52,096 KB
testcase_12 AC 35 ms
52,224 KB
testcase_13 AC 52 ms
74,752 KB
testcase_14 AC 66 ms
76,288 KB
testcase_15 AC 68 ms
76,416 KB
testcase_16 AC 66 ms
76,108 KB
testcase_17 AC 66 ms
76,800 KB
testcase_18 AC 59 ms
76,244 KB
testcase_19 AC 77 ms
76,564 KB
testcase_20 AC 92 ms
77,436 KB
testcase_21 AC 63 ms
76,240 KB
testcase_22 AC 77 ms
77,056 KB
testcase_23 AC 50 ms
70,272 KB
testcase_24 AC 44 ms
62,208 KB
testcase_25 AC 69 ms
76,288 KB
testcase_26 AC 74 ms
76,288 KB
testcase_27 AC 63 ms
76,464 KB
testcase_28 AC 67 ms
76,380 KB
testcase_29 AC 63 ms
76,416 KB
testcase_30 AC 70 ms
76,160 KB
testcase_31 AC 83 ms
76,736 KB
testcase_32 AC 70 ms
76,288 KB
testcase_33 AC 82 ms
76,160 KB
testcase_34 AC 77 ms
76,156 KB
testcase_35 AC 76 ms
76,800 KB
testcase_36 AC 78 ms
76,288 KB
testcase_37 AC 81 ms
76,672 KB
testcase_38 AC 77 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


t = input()[::-1]
d = int(input())
dp = [0]*9
dp[0] = 1
M = 10**9+7
for c in t:
    ndp = [0]*9
    if c!="?":
        v = int(c)
        for i in range(9):
            ndp[(i+v)%9] += dp[i]
    else:
        val = sum(dp)%M
        ndp = [val+dp[i] for i in range(9)]
        
    dp = ndp
if d==0:
    if all(((c=="0" or c=="?") for c in t)):
        ans = 1
    else:
        ans = 0
elif d==9:
    if all(((c=="0" or c=="?") for c in t)):
        ans = dp[0] - 1
    else:
        ans = dp[0]
else:
    ans = dp[d]
print(ans%M)
0