結果

問題 No.1407 Kindness
ユーザー flippergoflippergo
提出日時 2024-10-14 09:23:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 81,796 KB
実行使用メモリ 86,040 KB
最終ジャッジ日時 2024-10-14 09:24:04
合計ジャッジ時間 4,161 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,136 KB
testcase_01 AC 38 ms
51,832 KB
testcase_02 AC 38 ms
52,748 KB
testcase_03 AC 38 ms
52,676 KB
testcase_04 AC 38 ms
53,048 KB
testcase_05 AC 38 ms
52,268 KB
testcase_06 AC 38 ms
52,052 KB
testcase_07 AC 38 ms
52,680 KB
testcase_08 AC 37 ms
52,756 KB
testcase_09 AC 37 ms
52,448 KB
testcase_10 AC 42 ms
53,304 KB
testcase_11 AC 39 ms
52,212 KB
testcase_12 AC 112 ms
84,600 KB
testcase_13 AC 75 ms
78,380 KB
testcase_14 AC 75 ms
78,908 KB
testcase_15 AC 108 ms
84,052 KB
testcase_16 AC 87 ms
81,348 KB
testcase_17 AC 78 ms
79,784 KB
testcase_18 AC 78 ms
79,656 KB
testcase_19 AC 102 ms
83,588 KB
testcase_20 AC 97 ms
82,172 KB
testcase_21 AC 59 ms
69,100 KB
testcase_22 AC 58 ms
70,776 KB
testcase_23 AC 92 ms
81,852 KB
testcase_24 AC 118 ms
85,752 KB
testcase_25 AC 76 ms
79,752 KB
testcase_26 AC 87 ms
81,120 KB
testcase_27 AC 60 ms
71,584 KB
testcase_28 AC 105 ms
83,788 KB
testcase_29 AC 58 ms
68,492 KB
testcase_30 AC 111 ms
84,620 KB
testcase_31 AC 73 ms
78,464 KB
testcase_32 AC 104 ms
83,420 KB
testcase_33 AC 74 ms
78,832 KB
testcase_34 AC 90 ms
81,572 KB
testcase_35 AC 69 ms
78,456 KB
testcase_36 AC 54 ms
66,276 KB
testcase_37 AC 104 ms
86,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
A = list(map(int,list(input())))
N = len(A)
A = [0]+A
dp = [[0 for _ in range(2)] for _ in range(N+1)]
dp[1][0] = A[1]
dp[1][1] = 0
for j in range(A[1]):
    dp[1][1] += j
for i in range(2,N+1):
    for j in range(1,9+1):
        dp[i][1] = (dp[i][1]+dp[i-1][1]*j+j)%MOD
    for j in range(1,A[i]):
        dp[i][1] = (dp[i][1]+dp[i-1][0]*j)%MOD
    dp[i][0] = (dp[i-1][0]*A[i])%MOD
print((sum(dp[N]))%MOD)
0