結果

問題 No.1085 桁和の桁和
ユーザー tanon710
提出日時 2020-06-19 23:14:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 66,944 KB
最終ジャッジ日時 2024-07-23 00:40:59
合計ジャッジ時間 3,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 32 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
t=input()
d=int(input())
tmp=0
cnt=0
for c in t:
    if c=='?':
        cnt+=1
    else:
        tmp+=int(c)
if d!=0:
    if tmp!=0 and tmp%9==0:
        tmp=9
    coef=0
    for i in range(cnt):
        coef+=pow(10,i,mod)
        coef%=mod
    coef=[1]+[coef]*9
    if tmp==0:
        ans=coef[d]
    elif tmp==d:
        ans=coef[0]+coef[9]
    else:
        ans=coef[(d-tmp)%9]
    print(ans%mod)
if d==0:
    if tmp!=0:
        print(0)
    else:
        print(1)
0