結果

問題 No.372 It's automatic
ユーザー maspymaspy
提出日時 2020-03-17 02:39:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 491 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,588 KB
最終ジャッジ日時 2024-11-29 02:00:11
合計ジャッジ時間 87,143 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 511 ms
44,196 KB
testcase_01 AC 507 ms
44,192 KB
testcase_02 AC 507 ms
44,076 KB
testcase_03 AC 514 ms
44,068 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 509 ms
44,208 KB
testcase_17 AC 514 ms
44,052 KB
testcase_18 AC 511 ms
44,200 KB
testcase_19 AC 512 ms
43,932 KB
testcase_20 AC 512 ms
44,332 KB
testcase_21 AC 884 ms
44,332 KB
testcase_22 AC 881 ms
44,332 KB
testcase_23 AC 883 ms
43,908 KB
testcase_24 AC 885 ms
43,948 KB
testcase_25 AC 880 ms
44,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np
MOD = 10**9 + 7

# %%
S = [int(x) - ord('0') for x in readline().rstrip()]
M = int(read())

# %%
add_to = np.arange(M) * 10 % M
dp = np.zeros(M, np.int64)
for x in S:
    np.add.at(dp, (add_to + x) % M, dp)
    if x != 0:
        dp[x % M] += 1
    dp %= MOD


# %%
answer = sum(x == 0 for x in S) + dp[0]
print(answer % MOD)
0