結果

問題 No.372 It's automatic
ユーザー convexineqconvexineq
提出日時 2021-02-01 22:04:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,821 ms / 6,000 ms
コード長 275 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 248,092 KB
最終ジャッジ日時 2024-06-29 23:28:59
合計ジャッジ時間 23,939 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,956 KB
testcase_01 AC 37 ms
52,572 KB
testcase_02 AC 37 ms
53,424 KB
testcase_03 AC 36 ms
53,188 KB
testcase_04 AC 1,785 ms
181,228 KB
testcase_05 AC 1,779 ms
182,624 KB
testcase_06 AC 1,820 ms
247,780 KB
testcase_07 AC 1,785 ms
216,784 KB
testcase_08 AC 1,802 ms
177,312 KB
testcase_09 AC 1,809 ms
238,476 KB
testcase_10 AC 1,814 ms
248,092 KB
testcase_11 AC 1,806 ms
217,952 KB
testcase_12 AC 1,790 ms
180,004 KB
testcase_13 AC 1,788 ms
211,596 KB
testcase_14 AC 1,821 ms
246,904 KB
testcase_15 AC 1,812 ms
191,672 KB
testcase_16 AC 41 ms
60,024 KB
testcase_17 AC 40 ms
59,044 KB
testcase_18 AC 40 ms
58,660 KB
testcase_19 AC 40 ms
58,464 KB
testcase_20 AC 41 ms
58,804 KB
testcase_21 AC 128 ms
75,528 KB
testcase_22 AC 127 ms
75,316 KB
testcase_23 AC 128 ms
75,452 KB
testcase_24 AC 129 ms
75,732 KB
testcase_25 AC 127 ms
75,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
m = int(input())
MOD = 10**9+7
dp = [0]*m
dp[0] = 1
for i in s:
    i = int(i)
    ndp = dp[:]
    for j in range(m):
        nj = (j*10+i)%m
        ndp[nj] += dp[j]
        ndp[nj] %= MOD
    if i == 0: ndp[0] -= 1
    dp = ndp
print((dp[0]+s.count("0")-1)%MOD)
0