結果

問題 No.1407 Kindness
ユーザー rlangevinrlangevin
提出日時 2023-03-23 12:24:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 83,780 KB
最終ジャッジ日時 2024-09-18 15:25:41
合計ジャッジ時間 5,614 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 40 ms
52,352 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 186 ms
82,688 KB
testcase_13 AC 98 ms
76,928 KB
testcase_14 AC 103 ms
77,124 KB
testcase_15 AC 170 ms
81,920 KB
testcase_16 AC 136 ms
79,616 KB
testcase_17 AC 116 ms
78,536 KB
testcase_18 AC 114 ms
77,848 KB
testcase_19 AC 168 ms
81,436 KB
testcase_20 AC 149 ms
80,540 KB
testcase_21 AC 84 ms
76,344 KB
testcase_22 AC 88 ms
76,644 KB
testcase_23 AC 148 ms
80,008 KB
testcase_24 AC 195 ms
83,348 KB
testcase_25 AC 114 ms
77,828 KB
testcase_26 AC 134 ms
79,032 KB
testcase_27 AC 84 ms
76,236 KB
testcase_28 AC 172 ms
81,780 KB
testcase_29 AC 79 ms
76,616 KB
testcase_30 AC 186 ms
82,944 KB
testcase_31 AC 103 ms
77,440 KB
testcase_32 AC 222 ms
81,412 KB
testcase_33 AC 127 ms
77,172 KB
testcase_34 AC 189 ms
79,412 KB
testcase_35 AC 117 ms
77,184 KB
testcase_36 AC 77 ms
76,568 KB
testcase_37 AC 95 ms
83,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
S = list(map(int, S))
mod = 10 ** 9 + 7
N = len(S)
pre = [[0] * 2 for i in range(2)]
pre[0][0] = 1
for i in range(N):
    dp = [[0] * 2 for i in range(2)]
    for j in range(10):
        if j == 0:
            dp[0][1] = pre[0][0] + pre[0][1]
        elif j < S[i]:
            dp[1][1] += (sum(pre[0]) + sum(pre[1])) * j
        elif j == S[i]:
            dp[1][0] += (pre[0][0] + pre[1][0]) * j
            dp[1][1] += (pre[0][1] + pre[1][1]) * j
        else:
            dp[1][1] += (pre[0][1] + pre[1][1]) * j
    for a in range(2):
        for b in range(2):
            dp[a][b] %= mod
    dp, pre = pre, dp

ans = 0
for a in range(2):
    for b in range(2):
        ans += pre[a][b]
        ans %= mod
print( (ans-1) % mod )
0