結果

問題 No.1085 桁和の桁和
ユーザー tanon710tanon710
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 38 ms
51,952 KB
testcase_04 AC 41 ms
57,984 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 37 ms
51,712 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 38 ms
52,480 KB
testcase_11 AC 37 ms
51,712 KB
testcase_12 AC 38 ms
51,712 KB
testcase_13 AC 49 ms
60,160 KB
testcase_14 AC 53 ms
62,080 KB
testcase_15 AC 63 ms
64,896 KB
testcase_16 AC 62 ms
65,408 KB
testcase_17 AC 51 ms
62,080 KB
testcase_18 AC 49 ms
61,312 KB
testcase_19 AC 61 ms
64,768 KB
testcase_20 AC 47 ms
63,616 KB
testcase_21 AC 55 ms
62,976 KB
testcase_22 AC 61 ms
64,512 KB
testcase_23 AC 46 ms
59,776 KB
testcase_24 WA -
testcase_25 AC 54 ms
62,976 KB
testcase_26 AC 66 ms
65,792 KB
testcase_27 AC 61 ms
64,384 KB
testcase_28 AC 68 ms
66,944 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 63 ms
65,408 KB
testcase_32 AC 58 ms
63,104 KB
testcase_33 AC 86 ms
66,432 KB
testcase_34 AC 87 ms
66,176 KB
testcase_35 AC 85 ms
66,048 KB
testcase_36 AC 85 ms
66,176 KB
testcase_37 AC 86 ms
65,792 KB
testcase_38 AC 86 ms
66,048 KB
権限があれば一括ダウンロードができます

ソースコード

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