結果

問題 No.372 It's automatic
ユーザー kenkooookenkoooo
提出日時 2016-05-14 03:20:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 5,337 ms / 6,000 ms
コード長 1,056 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 262,168 KB
最終ジャッジ日時 2024-10-06 01:25:58
合計ジャッジ時間 64,713 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 5,113 ms
260,992 KB
testcase_05 AC 5,148 ms
261,120 KB
testcase_06 AC 5,182 ms
262,168 KB
testcase_07 AC 5,337 ms
260,992 KB
testcase_08 AC 5,198 ms
262,016 KB
testcase_09 AC 5,088 ms
260,864 KB
testcase_10 AC 5,081 ms
262,144 KB
testcase_11 AC 5,163 ms
261,888 KB
testcase_12 AC 5,226 ms
261,464 KB
testcase_13 AC 5,157 ms
261,504 KB
testcase_14 AC 5,020 ms
261,632 KB
testcase_15 AC 5,154 ms
260,992 KB
testcase_16 AC 38 ms
59,008 KB
testcase_17 AC 36 ms
58,368 KB
testcase_18 AC 37 ms
58,880 KB
testcase_19 AC 37 ms
58,624 KB
testcase_20 AC 40 ms
58,880 KB
testcase_21 AC 262 ms
76,160 KB
testcase_22 AC 274 ms
76,412 KB
testcase_23 AC 262 ms
76,160 KB
testcase_24 AC 265 ms
76,200 KB
testcase_25 AC 278 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main(S, M):
    MOD = 10 ** 9 + 7

    remainder = []
    for i in range(0, M):
        remainder.append((
            (i * 10) % M,
            (i * 10 + 1) % M,
            (i * 10 + 2) % M,
            (i * 10 + 3) % M,
            (i * 10 + 4) % M,
            (i * 10 + 5) % M,
            (i * 10 + 6) % M,
            (i * 10 + 7) % M,
            (i * 10 + 8) % M,
            (i * 10 + 9) % M
        ))
    dp = [0] * M
    dp[0] = 1
    zeros = 0
    for s in S:
        nex = [0] * M
        si = int(s)
        for m in range(0, M):
            nex[m] += dp[m]
            if nex[m] >= MOD:
                nex[m] -= MOD

            r = remainder[m][si]
            nex[r] += dp[m]
            if m == 0 and si == 0:
                zeros += 1
                nex[r] -= 1
                if nex[r] < 0:
                    nex[r] += MOD
            if nex[r] >= MOD:
                nex[r] -= MOD
        dp = nex
    print((dp[0] + zeros - 1 + MOD) % MOD)


if __name__ == "__main__":
    S = input()
    M = int(input())
    main(S, M)
0