結果

問題 No.372 It's automatic
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-05-12 18:59:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,530 ms / 6,000 ms
コード長 424 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 124,400 KB
最終ジャッジ日時 2024-10-05 14:04:16
合計ジャッジ時間 57,108 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 4,496 ms
123,648 KB
testcase_05 AC 4,500 ms
123,520 KB
testcase_06 AC 4,469 ms
123,648 KB
testcase_07 AC 4,494 ms
123,904 KB
testcase_08 AC 4,507 ms
124,124 KB
testcase_09 AC 4,505 ms
123,776 KB
testcase_10 AC 4,530 ms
123,848 KB
testcase_11 AC 4,467 ms
123,264 KB
testcase_12 AC 4,510 ms
124,032 KB
testcase_13 AC 4,442 ms
123,136 KB
testcase_14 AC 4,493 ms
124,400 KB
testcase_15 AC 4,526 ms
124,032 KB
testcase_16 AC 43 ms
59,392 KB
testcase_17 AC 42 ms
59,776 KB
testcase_18 AC 47 ms
61,056 KB
testcase_19 AC 42 ms
59,264 KB
testcase_20 AC 46 ms
61,184 KB
testcase_21 AC 281 ms
75,904 KB
testcase_22 AC 278 ms
75,776 KB
testcase_23 AC 274 ms
76,032 KB
testcase_24 AC 277 ms
75,904 KB
testcase_25 AC 274 ms
76,052 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 = [dp2[k] for k in range(M)]

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