結果

問題 No.372 It's automatic
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-05-12 18:55:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,512 ms / 6,000 ms
コード長 407 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 128,664 KB
最終ジャッジ日時 2024-10-05 14:02:28
合計ジャッジ時間 44,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,292 KB
testcase_01 AC 33 ms
52,216 KB
testcase_02 AC 33 ms
52,952 KB
testcase_03 AC 34 ms
52,460 KB
testcase_04 AC 3,439 ms
127,564 KB
testcase_05 AC 3,512 ms
127,952 KB
testcase_06 AC 3,462 ms
127,904 KB
testcase_07 AC 3,487 ms
127,944 KB
testcase_08 AC 3,484 ms
128,228 KB
testcase_09 AC 3,488 ms
128,192 KB
testcase_10 AC 3,509 ms
128,248 KB
testcase_11 AC 3,426 ms
127,116 KB
testcase_12 AC 3,474 ms
128,448 KB
testcase_13 AC 3,410 ms
127,512 KB
testcase_14 AC 3,440 ms
128,664 KB
testcase_15 AC 3,511 ms
128,640 KB
testcase_16 AC 40 ms
60,168 KB
testcase_17 AC 39 ms
59,416 KB
testcase_18 AC 42 ms
60,484 KB
testcase_19 AC 39 ms
59,628 KB
testcase_20 AC 41 ms
60,692 KB
testcase_21 AC 218 ms
75,860 KB
testcase_22 AC 219 ms
75,840 KB
testcase_23 AC 221 ms
76,132 KB
testcase_24 AC 222 ms
75,708 KB
testcase_25 AC 224 ms
75,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod7 = 10 ** 9 + 7

s = input()
M = int(input())

dp1 = [0] * M
dp2 = [0] * M

ans = 0
for i in range(len(s)):
    for j in range(M):
        nxt = (j * 10 + int(s[i])) % M
        dp2[nxt] += dp1[j]
        dp2[nxt] %= mod7

    if s[i] != '0':
        nxt = int(s[i]) % M
        dp2[nxt] += 1
        dp2[nxt] %= mod7
    else:
        ans += 1

    dp1 = list(dp2)

ans += dp1[0]
ans %= mod7
print(ans)
0