結果

問題 No.1085 桁和の桁和
ユーザー rlangevinrlangevin
提出日時 2023-08-01 12:35:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 68,304 KB
最終ジャッジ日時 2024-10-11 04:24:07
合計ジャッジ時間 3,126 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,332 KB
testcase_01 AC 40 ms
52,196 KB
testcase_02 AC 38 ms
53,032 KB
testcase_03 AC 39 ms
52,876 KB
testcase_04 AC 46 ms
63,276 KB
testcase_05 AC 38 ms
52,676 KB
testcase_06 AC 41 ms
52,756 KB
testcase_07 AC 40 ms
51,820 KB
testcase_08 AC 41 ms
52,820 KB
testcase_09 AC 40 ms
53,148 KB
testcase_10 AC 43 ms
52,268 KB
testcase_11 AC 41 ms
53,012 KB
testcase_12 AC 40 ms
53,164 KB
testcase_13 AC 46 ms
60,160 KB
testcase_14 AC 48 ms
63,432 KB
testcase_15 AC 49 ms
66,412 KB
testcase_16 AC 51 ms
66,220 KB
testcase_17 AC 48 ms
62,488 KB
testcase_18 AC 46 ms
62,296 KB
testcase_19 AC 49 ms
65,508 KB
testcase_20 AC 50 ms
65,976 KB
testcase_21 AC 47 ms
62,852 KB
testcase_22 AC 49 ms
64,628 KB
testcase_23 AC 45 ms
59,516 KB
testcase_24 AC 40 ms
52,944 KB
testcase_25 AC 48 ms
63,744 KB
testcase_26 AC 51 ms
66,452 KB
testcase_27 AC 50 ms
65,668 KB
testcase_28 AC 51 ms
68,108 KB
testcase_29 AC 48 ms
64,112 KB
testcase_30 AC 47 ms
64,140 KB
testcase_31 AC 49 ms
66,404 KB
testcase_32 AC 49 ms
64,712 KB
testcase_33 AC 48 ms
66,952 KB
testcase_34 AC 47 ms
67,104 KB
testcase_35 AC 48 ms
67,528 KB
testcase_36 AC 49 ms
67,688 KB
testcase_37 AC 47 ms
66,784 KB
testcase_38 AC 48 ms
68,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = list(input())
D = int(input())
cnt, s = 0, 0
for t in T:
    if t == "?":
        cnt += 1
    else:
        s += int(t)
if s:
    s %= 9
    if s == 0:
        s = 9

if D == 0:
    if s == 0:
        print(1)
    else:
        print(0)
    exit()

mod = 10 ** 9 + 7
ans = pow(10, cnt, mod) - 1
ans *= pow(9, mod - 2, mod)
if s == D:
    ans += 1
print(ans%mod)
0