結果

問題 No.1407 Kindness
ユーザー anagohirameanagohirame
提出日時 2021-02-26 21:46:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 85,400 KB
最終ジャッジ日時 2024-10-02 14:22:33
合計ジャッジ時間 4,411 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,752 KB
testcase_01 AC 33 ms
53,192 KB
testcase_02 AC 34 ms
52,548 KB
testcase_03 AC 35 ms
52,460 KB
testcase_04 AC 34 ms
52,160 KB
testcase_05 AC 40 ms
52,620 KB
testcase_06 AC 35 ms
52,536 KB
testcase_07 AC 39 ms
52,704 KB
testcase_08 AC 37 ms
52,460 KB
testcase_09 AC 35 ms
52,372 KB
testcase_10 AC 33 ms
52,948 KB
testcase_11 AC 36 ms
53,620 KB
testcase_12 AC 141 ms
84,012 KB
testcase_13 AC 86 ms
78,324 KB
testcase_14 AC 92 ms
78,896 KB
testcase_15 AC 137 ms
83,508 KB
testcase_16 AC 109 ms
81,036 KB
testcase_17 AC 91 ms
79,624 KB
testcase_18 AC 92 ms
79,204 KB
testcase_19 AC 133 ms
82,912 KB
testcase_20 AC 131 ms
82,020 KB
testcase_21 AC 75 ms
76,724 KB
testcase_22 AC 73 ms
76,820 KB
testcase_23 AC 108 ms
81,576 KB
testcase_24 AC 140 ms
85,056 KB
testcase_25 AC 99 ms
78,880 KB
testcase_26 AC 102 ms
80,344 KB
testcase_27 AC 75 ms
77,308 KB
testcase_28 AC 132 ms
83,508 KB
testcase_29 AC 67 ms
73,304 KB
testcase_30 AC 136 ms
84,292 KB
testcase_31 AC 91 ms
78,168 KB
testcase_32 AC 145 ms
83,004 KB
testcase_33 AC 99 ms
78,396 KB
testcase_34 AC 127 ms
81,440 KB
testcase_35 AC 79 ms
78,240 KB
testcase_36 AC 63 ms
71,804 KB
testcase_37 AC 129 ms
85,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
s = input()
n = len(s)
dp = [[0 for _ in range(2)] for _ in range(n)]
dp[0][0] = int(s[0])
dp[0][1] = sum(x for x in range(1, int(s[0])))
for i in range(1, n):
	dp[i][0] = (dp[i-1][0] * int(s[i])) % MOD
	dp[i][1] = (dp[i-1][0] * sum(x for x in range(1, int(s[i]))) + dp[i-1][1] * 45) % MOD
#print(*dp, sep="\n")
ans = sum(dp[n-1]) % MOD
for i in range(1, n):
	ans += pow(45, i, MOD)
	ans %= MOD
print(ans)
0