結果

問題 No.1085 桁和の桁和
ユーザー tanon710tanon710
提出日時 2020-06-19 23:11:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 501 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 67,816 KB
最終ジャッジ日時 2024-07-23 00:39:44
合計ジャッジ時間 4,350 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,296 KB
testcase_01 AC 35 ms
52,684 KB
testcase_02 AC 37 ms
52,188 KB
testcase_03 AC 37 ms
52,204 KB
testcase_04 AC 39 ms
58,772 KB
testcase_05 AC 36 ms
52,672 KB
testcase_06 AC 35 ms
52,000 KB
testcase_07 AC 35 ms
52,024 KB
testcase_08 AC 35 ms
52,516 KB
testcase_09 AC 37 ms
52,528 KB
testcase_10 AC 35 ms
53,100 KB
testcase_11 AC 36 ms
52,732 KB
testcase_12 AC 35 ms
52,612 KB
testcase_13 AC 46 ms
60,356 KB
testcase_14 AC 51 ms
62,644 KB
testcase_15 AC 61 ms
65,292 KB
testcase_16 AC 61 ms
65,288 KB
testcase_17 AC 51 ms
62,428 KB
testcase_18 AC 48 ms
63,104 KB
testcase_19 AC 62 ms
65,296 KB
testcase_20 AC 44 ms
64,916 KB
testcase_21 AC 53 ms
63,376 KB
testcase_22 AC 58 ms
65,976 KB
testcase_23 AC 43 ms
59,800 KB
testcase_24 WA -
testcase_25 AC 52 ms
63,308 KB
testcase_26 AC 63 ms
66,412 KB
testcase_27 AC 59 ms
65,664 KB
testcase_28 AC 66 ms
67,692 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 63 ms
66,792 KB
testcase_32 AC 56 ms
64,084 KB
testcase_33 AC 80 ms
67,816 KB
testcase_34 AC 82 ms
67,300 KB
testcase_35 AC 84 ms
67,612 KB
testcase_36 AC 84 ms
66,480 KB
testcase_37 AC 83 ms
67,204 KB
testcase_38 AC 83 ms
66,756 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
    ans=0
    if tmp==d:
        ans+=1
    for i in range(1,10):
        if (tmp+i-d)%9==0:
            ans+=coef[i]
            ans%=mod
    print(ans%mod)
if d==0:
    if tmp!=0:
        print(0)
    else:
        print(1)
0