結果

問題 No.1085 桁和の桁和
ユーザー titiatitia
提出日時 2020-06-19 23:02:40
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 551 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 77,196 KB
最終ジャッジ日時 2024-07-23 00:38:24
合計ジャッジ時間 4,444 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 126 ms
77,196 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 38 ms
52,352 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 54 ms
66,816 KB
testcase_14 AC 69 ms
75,648 KB
testcase_15 AC 82 ms
75,756 KB
testcase_16 AC 83 ms
76,032 KB
testcase_17 AC 67 ms
75,920 KB
testcase_18 AC 57 ms
70,784 KB
testcase_19 AC 81 ms
76,032 KB
testcase_20 AC 82 ms
76,384 KB
testcase_21 AC 70 ms
76,128 KB
testcase_22 AC 76 ms
76,032 KB
testcase_23 AC 51 ms
64,896 KB
testcase_24 AC 49 ms
60,928 KB
testcase_25 AC 67 ms
75,776 KB
testcase_26 AC 85 ms
75,904 KB
testcase_27 AC 76 ms
75,776 KB
testcase_28 AC 87 ms
75,752 KB
testcase_29 AC 72 ms
75,900 KB
testcase_30 AC 69 ms
75,992 KB
testcase_31 AC 82 ms
76,140 KB
testcase_32 AC 74 ms
76,160 KB
testcase_33 AC 114 ms
75,872 KB
testcase_34 AC 116 ms
76,032 KB
testcase_35 AC 116 ms
75,776 KB
testcase_36 AC 115 ms
76,288 KB
testcase_37 AC 113 ms
75,936 KB
testcase_38 AC 115 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=input().strip()
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[j]+=DP[i]*2
            else:
                NDP[j]+=DP[i]

            NDP[j]%=mod
    DP=NDP

if D==0:
    if set(T)<={"0","?"}:
        print(1)
    else:
        print(0)
elif T=="?" and D==9:
    print(1)
    
else:
    print(DP[D%9]%mod)
0