結果

問題 No.1085 桁和の桁和
ユーザー H3PO4H3PO4
提出日時 2021-10-09 09:46:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,438 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,580 KB
最終ジャッジ日時 2024-12-20 10:29:39
合計ジャッジ時間 40,208 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
44,332 KB
testcase_01 AC 525 ms
44,456 KB
testcase_02 AC 521 ms
44,436 KB
testcase_03 AC 521 ms
44,332 KB
testcase_04 AC 1,148 ms
44,076 KB
testcase_05 AC 523 ms
44,068 KB
testcase_06 AC 524 ms
44,072 KB
testcase_07 AC 520 ms
43,936 KB
testcase_08 AC 514 ms
44,320 KB
testcase_09 AC 520 ms
43,940 KB
testcase_10 AC 517 ms
44,300 KB
testcase_11 AC 516 ms
43,944 KB
testcase_12 AC 517 ms
44,320 KB
testcase_13 AC 626 ms
43,944 KB
testcase_14 AC 865 ms
44,324 KB
testcase_15 AC 1,337 ms
44,196 KB
testcase_16 AC 1,319 ms
44,324 KB
testcase_17 AC 907 ms
44,192 KB
testcase_18 AC 730 ms
43,940 KB
testcase_19 AC 1,241 ms
44,208 KB
testcase_20 AC 1,262 ms
44,388 KB
testcase_21 AC 993 ms
43,940 KB
testcase_22 AC 1,185 ms
44,456 KB
testcase_23 AC 574 ms
44,580 KB
testcase_24 AC 525 ms
43,936 KB
testcase_25 AC 927 ms
44,448 KB
testcase_26 AC 1,367 ms
43,940 KB
testcase_27 AC 1,199 ms
44,464 KB
testcase_28 AC 1,438 ms
44,460 KB
testcase_29 AC 1,013 ms
44,320 KB
testcase_30 AC 974 ms
44,328 KB
testcase_31 AC 1,391 ms
44,212 KB
testcase_32 AC 1,066 ms
44,192 KB
testcase_33 AC 1,176 ms
44,324 KB
testcase_34 AC 1,185 ms
44,208 KB
testcase_35 AC 1,195 ms
44,328 KB
testcase_36 AC 1,191 ms
43,940 KB
testcase_37 AC 1,202 ms
44,332 KB
testcase_38 AC 1,184 ms
44,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

T = input()
D = int(input())

MOD = 10 ** 9 + 7
dp = np.zeros(9, dtype=np.int64)
dp[0] = 1
zero_flag = True
for t in T:
    if t == '?':
        dp += np.full(9, dp.sum())
        dp %= MOD
    else:
        t = int(t)
        if t:
            zero_flag = False
            dp = np.roll(dp, t)

if D:
    if zero_flag:
        dp[0] -= 1
    if D == 9: D = 0
    ans = dp[D]
else:
    ans = int(zero_flag)
print(ans)
0