結果

問題 No.1085 桁和の桁和
ユーザー tanon710tanon710
提出日時 2020-06-19 23:16:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 647 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 66,816 KB
最終ジャッジ日時 2024-11-06 17:39:58
合計ジャッジ時間 3,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 43 ms
58,112 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 38 ms
52,480 KB
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 47 ms
60,672 KB
testcase_14 AC 54 ms
62,208 KB
testcase_15 AC 66 ms
65,408 KB
testcase_16 AC 66 ms
65,536 KB
testcase_17 AC 54 ms
62,592 KB
testcase_18 AC 50 ms
61,824 KB
testcase_19 AC 62 ms
64,896 KB
testcase_20 AC 49 ms
64,256 KB
testcase_21 AC 57 ms
63,360 KB
testcase_22 AC 62 ms
64,768 KB
testcase_23 AC 47 ms
60,160 KB
testcase_24 AC 40 ms
52,352 KB
testcase_25 AC 56 ms
62,976 KB
testcase_26 AC 66 ms
66,048 KB
testcase_27 AC 63 ms
64,512 KB
testcase_28 AC 70 ms
66,816 KB
testcase_29 AC 58 ms
63,104 KB
testcase_30 AC 56 ms
62,976 KB
testcase_31 AC 64 ms
65,536 KB
testcase_32 AC 60 ms
63,744 KB
testcase_33 AC 89 ms
66,176 KB
testcase_34 AC 91 ms
65,792 KB
testcase_35 AC 88 ms
66,048 KB
testcase_36 AC 88 ms
66,048 KB
testcase_37 AC 87 ms
66,048 KB
testcase_38 AC 90 ms
66,432 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
    else:
        tmp%=9
    coef=0
    for i in range(cnt):
        coef+=pow(10,i,mod)
        coef%=mod
    if tmp==0:
        ans=coef
    elif tmp==d:
        ans=coef+1
    else:
        ans=coef
    print(ans%mod)
if d==0:
    if tmp!=0:
        print(0)
    else:
        print(1)
0