結果

問題 No.1407 Kindness
ユーザー 小野寺健小野寺健
提出日時 2021-05-23 09:56:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 675 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-10-11 12:43:19
合計ジャッジ時間 10,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 613 ms
21,248 KB
testcase_13 AC 147 ms
12,928 KB
testcase_14 AC 184 ms
13,696 KB
testcase_15 AC 549 ms
20,224 KB
testcase_16 AC 346 ms
16,896 KB
testcase_17 AC 237 ms
14,976 KB
testcase_18 AC 222 ms
14,464 KB
testcase_19 AC 488 ms
19,200 KB
testcase_20 AC 414 ms
18,048 KB
testcase_21 AC 57 ms
11,136 KB
testcase_22 AC 70 ms
11,392 KB
testcase_23 AC 391 ms
17,536 KB
testcase_24 AC 675 ms
22,528 KB
testcase_25 AC 225 ms
14,592 KB
testcase_26 AC 313 ms
16,256 KB
testcase_27 AC 64 ms
11,264 KB
testcase_28 AC 538 ms
20,224 KB
testcase_29 AC 45 ms
10,880 KB
testcase_30 AC 606 ms
21,248 KB
testcase_31 AC 149 ms
13,184 KB
testcase_32 AC 530 ms
22,016 KB
testcase_33 AC 197 ms
14,848 KB
testcase_34 AC 398 ms
19,072 KB
testcase_35 AC 167 ms
14,208 KB
testcase_36 AC 43 ms
10,880 KB
testcase_37 AC 664 ms
22,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 1000000007

N = input()
n = len(N)
DP = [[0] * 2 for _ in range(n+1)]
DP[0][1] = 1

for i in range(n):
    j = int(N[i])
    DP[i+1][0] = (DP[i][0] + (DP[i][1] * sum(list(range(j)))) * pow(45, n-i-1, M) + (pow(45, n-i-1, M) if i != n-1 else 0)) % M
    DP[i+1][1] = (DP[i][1] * j) % M
    
print((DP[n][0] + DP[n][1]) % M)
0