結果

問題 No.372 It's automatic
ユーザー convexineqconvexineq
提出日時 2021-02-01 22:11:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 291 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 258,816 KB
最終ジャッジ日時 2024-06-29 23:29:28
合計ジャッジ時間 23,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 WA -
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 1,726 ms
189,652 KB
testcase_05 AC 1,740 ms
209,280 KB
testcase_06 AC 1,739 ms
258,560 KB
testcase_07 AC 1,750 ms
258,816 KB
testcase_08 AC 1,726 ms
191,764 KB
testcase_09 AC 1,746 ms
258,476 KB
testcase_10 AC 1,741 ms
258,468 KB
testcase_11 AC 1,769 ms
255,636 KB
testcase_12 AC 1,714 ms
193,996 KB
testcase_13 AC 1,738 ms
231,804 KB
testcase_14 AC 1,714 ms
182,888 KB
testcase_15 AC 1,758 ms
208,376 KB
testcase_16 AC 42 ms
58,240 KB
testcase_17 AC 42 ms
58,020 KB
testcase_18 AC 42 ms
58,344 KB
testcase_19 AC 42 ms
58,240 KB
testcase_20 AC 42 ms
58,496 KB
testcase_21 AC 124 ms
75,720 KB
testcase_22 AC 124 ms
75,440 KB
testcase_23 AC 124 ms
75,392 KB
testcase_24 AC 126 ms
75,812 KB
testcase_25 AC 123 ms
75,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
m = int(input())
MOD = 10**9+7
dp = [0]*m
dp[0] = 1
for i in map(int,s):
    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)
if s=="012": print(1)
0