結果

問題 No.1407 Kindness
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-26 21:45:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 667 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 170,252 KB
最終ジャッジ日時 2024-10-02 14:22:17
合計ジャッジ時間 10,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,300 KB
testcase_01 AC 43 ms
62,220 KB
testcase_02 AC 40 ms
60,320 KB
testcase_03 AC 36 ms
53,720 KB
testcase_04 AC 43 ms
60,964 KB
testcase_05 AC 40 ms
59,288 KB
testcase_06 AC 40 ms
60,864 KB
testcase_07 AC 39 ms
60,732 KB
testcase_08 AC 39 ms
59,500 KB
testcase_09 AC 38 ms
60,216 KB
testcase_10 AC 37 ms
60,172 KB
testcase_11 AC 37 ms
59,688 KB
testcase_12 AC 616 ms
160,468 KB
testcase_13 AC 185 ms
94,892 KB
testcase_14 AC 218 ms
100,592 KB
testcase_15 AC 582 ms
152,296 KB
testcase_16 AC 372 ms
123,508 KB
testcase_17 AC 276 ms
108,196 KB
testcase_18 AC 258 ms
106,560 KB
testcase_19 AC 510 ms
145,144 KB
testcase_20 AC 434 ms
133,604 KB
testcase_21 AC 90 ms
80,728 KB
testcase_22 AC 102 ms
83,148 KB
testcase_23 AC 420 ms
130,648 KB
testcase_24 AC 667 ms
169,344 KB
testcase_25 AC 265 ms
106,300 KB
testcase_26 AC 352 ms
119,456 KB
testcase_27 AC 102 ms
81,804 KB
testcase_28 AC 550 ms
151,548 KB
testcase_29 AC 80 ms
78,840 KB
testcase_30 AC 604 ms
159,432 KB
testcase_31 AC 192 ms
95,348 KB
testcase_32 AC 549 ms
146,556 KB
testcase_33 AC 234 ms
101,584 KB
testcase_34 AC 448 ms
129,528 KB
testcase_35 AC 209 ms
96,816 KB
testcase_36 AC 71 ms
73,624 KB
testcase_37 AC 588 ms
170,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
S = input()
N = len(S)

dp = [[[0] * 2 for _ in range(10)] for _ in range(N + 1)]
dp[0][0][0] = 1
for i, s in enumerate(S):
    nd = int(s)
    for j in range(10):
        for k in range(2):
            for d in range(10):
                ni = i + 1
                nj = d
                nk = k
                if nk == 0:
                    if d > nd:
                        continue
                    if d < nd:
                        nk = 1
                dp[ni][nj][nk] += dp[i][j][k] * d
                dp[ni][nj][nk] %= mod

ans = 0
for i in range(10):
    for j in range(2):
        ans += dp[N][i][j]
        ans %= mod

add = 45
for i in range(N - 1):
    ans += add
    ans %= mod
    add *= 45
    add %= mod

print(ans)
0