結果

問題 No.1085 桁和の桁和
ユーザー tyawanmusityawanmusi
提出日時 2020-05-20 01:03:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,160 KB
最終ジャッジ日時 2024-11-06 17:31:10
合計ジャッジ時間 6,241 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 267 ms
90,808 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 42 ms
51,968 KB
testcase_12 AC 52 ms
59,904 KB
testcase_13 AC 71 ms
68,224 KB
testcase_14 AC 106 ms
78,976 KB
testcase_15 AC 158 ms
82,776 KB
testcase_16 AC 157 ms
82,724 KB
testcase_17 AC 106 ms
78,936 KB
testcase_18 AC 78 ms
72,320 KB
testcase_19 AC 147 ms
81,920 KB
testcase_20 AC 146 ms
82,104 KB
testcase_21 AC 115 ms
80,000 KB
testcase_22 AC 137 ms
81,596 KB
testcase_23 AC 60 ms
66,176 KB
testcase_24 AC 49 ms
61,312 KB
testcase_25 AC 111 ms
79,232 KB
testcase_26 AC 159 ms
83,144 KB
testcase_27 AC 139 ms
81,572 KB
testcase_28 AC 171 ms
83,912 KB
testcase_29 AC 121 ms
80,148 KB
testcase_30 AC 113 ms
79,744 KB
testcase_31 AC 156 ms
82,560 KB
testcase_32 AC 124 ms
80,608 KB
testcase_33 AC 279 ms
91,136 KB
testcase_34 AC 279 ms
91,136 KB
testcase_35 AC 281 ms
91,028 KB
testcase_36 AC 279 ms
91,160 KB
testcase_37 AC 285 ms
91,136 KB
testcase_38 AC 280 ms
91,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# writer解
s = input()
d = int(input())
mod = 10**9+7
digit_sum = 0
blind_count = 0
for i in s:
    if i == "?":
        blind_count += 1
    else:
        digit_sum += int(i)
        if digit_sum > 9:
            digit_sum -= 9

dp = [10*[0]for _ in range(blind_count+1)]
dp[0][0] = 1
for i in range(blind_count):
    for j in range(10):
        for k in range(10):
            jk = j+k
            if jk > 9:
                jk -= 9
            dp[i+1][jk] += dp[i][j]
            dp[i+1][jk] %= mod

if d == 0:
    if digit_sum == 0:
        print(1)
    else:
        print(0)
    exit()

if digit_sum < d:
    n = d-digit_sum
else:
    n = d-digit_sum+9
ans = dp[blind_count][n]
if digit_sum == d:
    ans += 1
print(ans)
0