結果

問題 No.1085 桁和の桁和
ユーザー tamatotamato
提出日時 2020-06-25 01:26:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 701 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 91,340 KB
最終ジャッジ日時 2024-07-23 00:46:59
合計ジャッジ時間 5,922 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,596 KB
testcase_01 AC 37 ms
53,436 KB
testcase_02 AC 37 ms
52,924 KB
testcase_03 AC 37 ms
53,264 KB
testcase_04 AC 38 ms
53,320 KB
testcase_05 WA -
testcase_06 AC 36 ms
53,328 KB
testcase_07 AC 37 ms
53,168 KB
testcase_08 AC 36 ms
53,208 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 70 ms
77,612 KB
testcase_14 AC 99 ms
81,528 KB
testcase_15 AC 157 ms
89,204 KB
testcase_16 AC 155 ms
88,756 KB
testcase_17 AC 102 ms
82,300 KB
testcase_18 AC 80 ms
79,056 KB
testcase_19 AC 143 ms
87,648 KB
testcase_20 AC 37 ms
53,480 KB
testcase_21 AC 113 ms
83,640 KB
testcase_22 AC 136 ms
86,460 KB
testcase_23 AC 59 ms
71,720 KB
testcase_24 AC 49 ms
63,620 KB
testcase_25 AC 107 ms
82,788 KB
testcase_26 AC 160 ms
89,224 KB
testcase_27 AC 137 ms
86,652 KB
testcase_28 AC 173 ms
91,288 KB
testcase_29 AC 114 ms
84,160 KB
testcase_30 AC 110 ms
83,220 KB
testcase_31 AC 153 ms
88,992 KB
testcase_32 AC 121 ms
84,788 KB
testcase_33 AC 257 ms
91,228 KB
testcase_34 AC 254 ms
91,232 KB
testcase_35 AC 255 ms
91,228 KB
testcase_36 AC 257 ms
91,340 KB
testcase_37 AC 254 ms
90,980 KB
testcase_38 AC 254 ms
91,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    T = input().rstrip('\n')
    D = int(input())
    N = len(T)

    if D == 0:
        if "?"*N != T:
            print(0)
        else:
            print(1)
        exit()

    dp = [[0] * 9 for _ in range(N+1)]
    dp[0][0] = 1
    for i in range(N):
        t = T[i]
        if t != "?":
            t = int(t)
            for j in range(9):
                dp[i+1][(j+t)%9] = dp[i][j]
        else:
            for j in range(9):
                for k in range(10):
                    dp[i+1][(j+k)%9] = (dp[i+1][(j+k)%9] + dp[i][j])%mod
    print(dp[-1][D%9])




if __name__ == '__main__':
    main()
0