結果

問題 No.1085 桁和の桁和
ユーザー 👑 rin204rin204
提出日時 2022-07-14 13:30:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 678 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 76,568 KB
最終ジャッジ日時 2024-06-25 20:43:07
合計ジャッジ時間 5,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
52,160 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 47 ms
64,896 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 39 ms
52,736 KB
testcase_09 WA -
testcase_10 AC 39 ms
52,224 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 64 ms
68,736 KB
testcase_14 AC 87 ms
75,948 KB
testcase_15 AC 128 ms
76,288 KB
testcase_16 AC 125 ms
76,160 KB
testcase_17 AC 90 ms
76,160 KB
testcase_18 AC 70 ms
73,216 KB
testcase_19 AC 119 ms
76,288 KB
testcase_20 AC 39 ms
52,864 KB
testcase_21 AC 97 ms
76,568 KB
testcase_22 AC 117 ms
76,152 KB
testcase_23 AC 61 ms
67,840 KB
testcase_24 AC 53 ms
63,872 KB
testcase_25 AC 92 ms
75,976 KB
testcase_26 AC 132 ms
76,288 KB
testcase_27 AC 116 ms
76,076 KB
testcase_28 AC 139 ms
76,160 KB
testcase_29 AC 101 ms
76,288 KB
testcase_30 AC 97 ms
76,160 KB
testcase_31 AC 128 ms
76,104 KB
testcase_32 AC 108 ms
76,164 KB
testcase_33 AC 128 ms
76,152 KB
testcase_34 AC 125 ms
76,504 KB
testcase_35 AC 124 ms
76,236 KB
testcase_36 AC 124 ms
76,304 KB
testcase_37 AC 127 ms
76,092 KB
testcase_38 AC 124 ms
76,288 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
    print(dp[d])


0