結果

問題 No.1085 桁和の桁和
ユーザー 👑 rin204rin204
提出日時 2022-07-14 13:32:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-06-25 20:44:29
合計ジャッジ時間 5,014 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,712 KB
testcase_01 AC 49 ms
52,480 KB
testcase_02 AC 45 ms
51,840 KB
testcase_03 AC 45 ms
52,352 KB
testcase_04 AC 53 ms
64,000 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 42 ms
51,584 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 41 ms
51,712 KB
testcase_09 AC 42 ms
52,224 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 43 ms
51,584 KB
testcase_12 AC 49 ms
58,880 KB
testcase_13 AC 72 ms
69,120 KB
testcase_14 AC 100 ms
75,776 KB
testcase_15 AC 140 ms
76,032 KB
testcase_16 AC 140 ms
75,904 KB
testcase_17 AC 102 ms
75,648 KB
testcase_18 AC 82 ms
73,472 KB
testcase_19 AC 132 ms
75,904 KB
testcase_20 AC 42 ms
52,096 KB
testcase_21 AC 109 ms
75,648 KB
testcase_22 AC 128 ms
76,032 KB
testcase_23 AC 71 ms
67,072 KB
testcase_24 AC 61 ms
62,976 KB
testcase_25 AC 105 ms
75,904 KB
testcase_26 AC 145 ms
75,904 KB
testcase_27 AC 129 ms
76,032 KB
testcase_28 AC 150 ms
76,032 KB
testcase_29 AC 112 ms
75,648 KB
testcase_30 AC 108 ms
76,416 KB
testcase_31 AC 142 ms
76,160 KB
testcase_32 AC 120 ms
76,544 KB
testcase_33 AC 140 ms
76,288 KB
testcase_34 AC 136 ms
76,288 KB
testcase_35 AC 137 ms
75,904 KB
testcase_36 AC 136 ms
75,776 KB
testcase_37 AC 139 ms
76,288 KB
testcase_38 AC 137 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

T = input()
d = int(input())
if d == 0:
    ans = 1
    if all(t in "0?" for t in T):
        print(1)
    else:
        print(0)
else:
    if d == 9:
        d = 0
    dp = [0] * 9
    dp[0] = 1
    for t in T:
        ndp = [0] * 9
        if t == "?":
            for i in range(9):
                for j in range(10):
                    ndp[(i + j) % 9] += dp[i]
        else:
            t = int(t)
            for i in range(9):
                ndp[(i + t) % 9] += dp[i]
        for i in range(9):
            dp[i] = ndp[i] % MOD
    if d == 0 and all(t in "0?" for t in T):
        dp[0] -= 1
        dp[0] %= MOD
    print(dp[d])


0