結果

問題 No.1085 桁和の桁和
ユーザー titiatitia
提出日時 2020-06-19 22:42:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 76,564 KB
最終ジャッジ日時 2024-07-23 00:18:03
合計ジャッジ時間 4,031 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,824 KB
testcase_01 AC 38 ms
53,360 KB
testcase_02 AC 37 ms
52,332 KB
testcase_03 AC 38 ms
52,960 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 37 ms
53,136 KB
testcase_07 AC 37 ms
52,432 KB
testcase_08 AC 37 ms
52,596 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 55 ms
66,972 KB
testcase_14 AC 69 ms
76,024 KB
testcase_15 AC 82 ms
76,092 KB
testcase_16 AC 81 ms
75,944 KB
testcase_17 AC 68 ms
75,952 KB
testcase_18 AC 59 ms
72,356 KB
testcase_19 AC 81 ms
76,400 KB
testcase_20 AC 80 ms
76,216 KB
testcase_21 AC 71 ms
76,080 KB
testcase_22 AC 79 ms
75,860 KB
testcase_23 AC 53 ms
65,424 KB
testcase_24 AC 47 ms
62,536 KB
testcase_25 AC 70 ms
76,252 KB
testcase_26 AC 84 ms
76,072 KB
testcase_27 AC 79 ms
76,004 KB
testcase_28 AC 88 ms
76,372 KB
testcase_29 AC 73 ms
76,124 KB
testcase_30 AC 72 ms
76,280 KB
testcase_31 AC 83 ms
76,124 KB
testcase_32 AC 75 ms
76,256 KB
testcase_33 AC 117 ms
76,564 KB
testcase_34 AC 117 ms
76,108 KB
testcase_35 AC 118 ms
76,040 KB
testcase_36 AC 117 ms
76,140 KB
testcase_37 AC 117 ms
76,360 KB
testcase_38 AC 116 ms
76,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Q=0
W=0
for t in T:
    if t=="?":
        Q+=1
    else:
        W+=int(t)

DP=[0]*9
DP[W%9]=1

for t in range(Q):
    NDP=[0]*9
    for i in range(9):
        for j in range(9):
            if i==j:
                NDP[i]+=DP[i]*2
            else:
                NDP[j]+=DP[i]

            NDP[j]%=mod
    DP=NDP

if D==0:
    print(0)
else:
    print(DP[D%9])
0