結果

問題 No.1085 桁和の桁和
ユーザー c-yanc-yan
提出日時 2020-06-21 01:27:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 385 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-23 00:46:18
合計ジャッジ時間 32,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 TLE -
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 177 ms
10,752 KB
testcase_14 AC 507 ms
10,752 KB
testcase_15 AC 1,138 ms
10,880 KB
testcase_16 AC 1,117 ms
11,008 KB
testcase_17 AC 543 ms
10,880 KB
testcase_18 AC 289 ms
10,752 KB
testcase_19 AC 1,009 ms
10,752 KB
testcase_20 AC 1,012 ms
10,752 KB
testcase_21 AC 658 ms
10,880 KB
testcase_22 AC 921 ms
10,880 KB
testcase_23 AC 110 ms
10,624 KB
testcase_24 AC 42 ms
10,624 KB
testcase_25 AC 587 ms
10,880 KB
testcase_26 AC 1,173 ms
10,880 KB
testcase_27 AC 928 ms
10,752 KB
testcase_28 AC 1,331 ms
10,880 KB
testcase_29 AC 711 ms
11,008 KB
testcase_30 AC 650 ms
10,880 KB
testcase_31 AC 1,125 ms
11,008 KB
testcase_32 AC 799 ms
10,880 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

m = 1000000007


def update(t, nt, v):
    for i in range(10):
        ni = i + v
        if ni > 9:
            ni -= 9
        nt[ni] += t[i]
        nt[ni] %= m


t = [0] * 10
t[0] = 1
for c in T:
    nt = [0] * 10
    if c != '?':
        update(t, nt, int(c))
    else:
        for i in range(10):
            update(t, nt, i)
    t = nt
print(t[D])
0