結果

問題 No.1085 桁和の桁和
ユーザー nephrologistnephrologist
提出日時 2020-06-19 22:27:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 76,744 KB
最終ジャッジ日時 2024-07-23 00:16:56
合計ジャッジ時間 3,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,396 KB
testcase_02 AC 36 ms
53,352 KB
testcase_03 AC 36 ms
53,052 KB
testcase_04 WA -
testcase_05 AC 36 ms
52,276 KB
testcase_06 AC 37 ms
52,872 KB
testcase_07 AC 36 ms
52,820 KB
testcase_08 AC 36 ms
52,304 KB
testcase_09 AC 36 ms
53,120 KB
testcase_10 AC 36 ms
53,380 KB
testcase_11 AC 36 ms
53,204 KB
testcase_12 WA -
testcase_13 AC 52 ms
68,648 KB
testcase_14 AC 61 ms
76,436 KB
testcase_15 AC 66 ms
76,172 KB
testcase_16 AC 63 ms
76,272 KB
testcase_17 AC 59 ms
75,924 KB
testcase_18 AC 53 ms
74,296 KB
testcase_19 AC 64 ms
76,516 KB
testcase_20 AC 66 ms
76,096 KB
testcase_21 AC 61 ms
76,156 KB
testcase_22 AC 64 ms
76,080 KB
testcase_23 AC 50 ms
67,140 KB
testcase_24 AC 46 ms
62,452 KB
testcase_25 AC 58 ms
75,888 KB
testcase_26 AC 63 ms
76,208 KB
testcase_27 AC 63 ms
76,156 KB
testcase_28 AC 69 ms
76,148 KB
testcase_29 AC 61 ms
76,156 KB
testcase_30 AC 58 ms
76,024 KB
testcase_31 AC 65 ms
76,400 KB
testcase_32 AC 61 ms
75,876 KB
testcase_33 AC 73 ms
76,512 KB
testcase_34 AC 74 ms
76,160 KB
testcase_35 AC 76 ms
76,360 KB
testcase_36 AC 77 ms
75,928 KB
testcase_37 AC 75 ms
76,072 KB
testcase_38 AC 76 ms
76,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = input()
D = int(input())
keta = len(t)

mod = 10 ** 9 + 7

hatena = 0
num = 0
for i in range(keta):
    if t[i] == "?":
        hatena += 1
    else:
        num += int(t[i])

if num == 0:
    num = 0
else:
    num = num % 9
    if num == 0:
        num += 9
cnt = [0] * (10)
cnt[num] += 1
if hatena == 0:
    print(cnt[D])
    exit()
for i in range(hatena):
    nxt = [0] * (10)
    ss = sum(cnt)
    for d in range(1, 10):
        nxt[d] += cnt[d]
        nxt[d] += ss
        nxt[d] %= mod
    cnt = nxt[::]
print(cnt[D] % mod)
0