結果

問題 No.1085 桁和の桁和
ユーザー H3PO4H3PO4
提出日時 2021-10-09 09:43:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,468 KB
最終ジャッジ日時 2024-07-23 21:59:27
合計ジャッジ時間 38,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
44,080 KB
testcase_01 AC 520 ms
43,948 KB
testcase_02 AC 513 ms
44,076 KB
testcase_03 AC 521 ms
44,208 KB
testcase_04 AC 1,189 ms
43,944 KB
testcase_05 AC 515 ms
43,692 KB
testcase_06 AC 510 ms
43,952 KB
testcase_07 AC 520 ms
43,956 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 517 ms
43,696 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 627 ms
43,948 KB
testcase_14 AC 877 ms
43,952 KB
testcase_15 AC 1,340 ms
43,816 KB
testcase_16 AC 1,296 ms
44,204 KB
testcase_17 AC 883 ms
43,688 KB
testcase_18 AC 719 ms
44,212 KB
testcase_19 AC 1,239 ms
43,948 KB
testcase_20 AC 1,275 ms
44,076 KB
testcase_21 AC 971 ms
44,336 KB
testcase_22 AC 1,172 ms
44,196 KB
testcase_23 AC 575 ms
43,956 KB
testcase_24 AC 535 ms
44,204 KB
testcase_25 AC 947 ms
44,332 KB
testcase_26 AC 1,367 ms
44,084 KB
testcase_27 AC 1,188 ms
44,352 KB
testcase_28 AC 1,463 ms
43,952 KB
testcase_29 AC 1,006 ms
44,204 KB
testcase_30 AC 970 ms
44,200 KB
testcase_31 AC 1,313 ms
43,692 KB
testcase_32 AC 1,065 ms
44,468 KB
testcase_33 AC 1,188 ms
44,204 KB
testcase_34 AC 1,213 ms
44,208 KB
testcase_35 AC 1,185 ms
44,072 KB
testcase_36 AC 1,206 ms
43,956 KB
testcase_37 AC 1,193 ms
43,820 KB
testcase_38 AC 1,186 ms
43,820 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 zero_flag:
    dp[8] -= 1
    if D:
        D %= 9
        ans = dp[D]
    else:
        ans = 1
else:
    if D:
        D %= 9
        ans = dp[D]
    else:
        ans = 0
print(ans)
0