結果

問題 No.1407 Kindness
ユーザー ああいいああいい
提出日時 2022-03-12 16:14:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 84,232 KB
最終ジャッジ日時 2024-09-16 23:35:54
合計ジャッジ時間 3,408 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,444 KB
testcase_01 AC 33 ms
52,672 KB
testcase_02 AC 33 ms
52,840 KB
testcase_03 AC 33 ms
52,004 KB
testcase_04 AC 33 ms
52,560 KB
testcase_05 AC 33 ms
52,392 KB
testcase_06 AC 33 ms
51,884 KB
testcase_07 AC 33 ms
52,632 KB
testcase_08 AC 33 ms
52,568 KB
testcase_09 AC 33 ms
52,572 KB
testcase_10 AC 34 ms
52,552 KB
testcase_11 AC 36 ms
53,228 KB
testcase_12 AC 75 ms
83,100 KB
testcase_13 AC 52 ms
66,888 KB
testcase_14 AC 53 ms
69,304 KB
testcase_15 AC 65 ms
80,008 KB
testcase_16 AC 59 ms
73,948 KB
testcase_17 AC 56 ms
71,848 KB
testcase_18 AC 52 ms
69,744 KB
testcase_19 AC 60 ms
79,900 KB
testcase_20 AC 58 ms
76,744 KB
testcase_21 AC 46 ms
64,660 KB
testcase_22 AC 46 ms
64,064 KB
testcase_23 AC 56 ms
75,828 KB
testcase_24 AC 79 ms
84,232 KB
testcase_25 AC 53 ms
70,888 KB
testcase_26 AC 55 ms
73,436 KB
testcase_27 AC 47 ms
65,392 KB
testcase_28 AC 65 ms
79,888 KB
testcase_29 AC 50 ms
64,336 KB
testcase_30 AC 75 ms
82,076 KB
testcase_31 AC 52 ms
67,256 KB
testcase_32 AC 63 ms
80,124 KB
testcase_33 AC 49 ms
67,680 KB
testcase_34 AC 52 ms
75,140 KB
testcase_35 AC 47 ms
67,384 KB
testcase_36 AC 44 ms
62,540 KB
testcase_37 AC 64 ms
78,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
l = list(map(int,list(N)))
P = 10 ** 9 + 7
dp = [0] * len(l)
now = l[0]
for i in range(l[0]):
    dp[0] += i
for i in range(len(l)-1):
    dp[i+1] = dp[i] * 45 % P
    for j in range(l[i+1]):
        dp[i+1] += now * j
    for j in range(10):
        dp[i+1] += j
    now = now * l[i+1] % P
print((dp[-1]+now)%P)
0