結果

問題 No.1085 桁和の桁和
ユーザー tktk_snsntktk_snsn
提出日時 2020-06-19 23:00:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 92,416 KB
最終ジャッジ日時 2024-11-06 17:39:37
合計ジャッジ時間 7,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 45 ms
58,496 KB
testcase_04 AC 294 ms
91,264 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 42 ms
52,096 KB
testcase_12 AC 56 ms
61,696 KB
testcase_13 AC 97 ms
77,952 KB
testcase_14 AC 138 ms
81,664 KB
testcase_15 AC 210 ms
89,600 KB
testcase_16 AC 206 ms
89,600 KB
testcase_17 AC 140 ms
82,560 KB
testcase_18 AC 110 ms
79,488 KB
testcase_19 AC 191 ms
88,576 KB
testcase_20 AC 193 ms
88,448 KB
testcase_21 AC 148 ms
83,840 KB
testcase_22 AC 184 ms
87,040 KB
testcase_23 AC 82 ms
71,808 KB
testcase_24 AC 68 ms
66,560 KB
testcase_25 AC 145 ms
83,072 KB
testcase_26 AC 212 ms
90,112 KB
testcase_27 AC 184 ms
87,424 KB
testcase_28 AC 227 ms
91,904 KB
testcase_29 AC 158 ms
84,608 KB
testcase_30 AC 152 ms
84,096 KB
testcase_31 AC 207 ms
89,472 KB
testcase_32 AC 165 ms
85,504 KB
testcase_33 AC 268 ms
92,288 KB
testcase_34 AC 268 ms
92,416 KB
testcase_35 AC 273 ms
92,160 KB
testcase_36 AC 270 ms
92,416 KB
testcase_37 AC 269 ms
91,904 KB
testcase_38 AC 270 ms
92,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = input()
D = int(input())
N = len(T)
mod = 10 ** 9 + 7

dp = [[0] * 10 for _ in range(N + 3)]
dp[0][0] = 1
for i, t in enumerate(T):
    rng = range(10) if t == "?" else [int(t)]
    for j in range(10):
        for d in rng:
            ni = i + 1
            nj = j + d
            while nj >= 10:
                nj -= 9
            dp[ni][nj] += dp[i][j]
            dp[ni][nj] %= mod

print(dp[N][D])
0