結果

問題 No.1407 Kindness
ユーザー marroncastlemarroncastle
提出日時 2021-02-26 22:21:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-10-02 15:09:55
合計ジャッジ時間 3,332 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,744 KB
testcase_01 AC 37 ms
53,360 KB
testcase_02 AC 36 ms
51,940 KB
testcase_03 AC 36 ms
52,148 KB
testcase_04 AC 35 ms
52,384 KB
testcase_05 AC 35 ms
52,548 KB
testcase_06 AC 35 ms
52,680 KB
testcase_07 AC 37 ms
52,400 KB
testcase_08 AC 39 ms
53,364 KB
testcase_09 AC 39 ms
52,328 KB
testcase_10 AC 35 ms
51,744 KB
testcase_11 AC 37 ms
52,876 KB
testcase_12 AC 60 ms
77,528 KB
testcase_13 AC 49 ms
65,332 KB
testcase_14 AC 56 ms
67,560 KB
testcase_15 AC 61 ms
75,152 KB
testcase_16 AC 57 ms
70,752 KB
testcase_17 AC 51 ms
68,640 KB
testcase_18 AC 53 ms
68,140 KB
testcase_19 AC 57 ms
73,896 KB
testcase_20 AC 56 ms
71,600 KB
testcase_21 AC 47 ms
63,984 KB
testcase_22 AC 48 ms
63,320 KB
testcase_23 AC 55 ms
71,192 KB
testcase_24 AC 61 ms
78,208 KB
testcase_25 AC 51 ms
67,896 KB
testcase_26 AC 55 ms
69,512 KB
testcase_27 AC 49 ms
62,908 KB
testcase_28 AC 60 ms
74,568 KB
testcase_29 AC 46 ms
61,864 KB
testcase_30 AC 60 ms
76,964 KB
testcase_31 AC 50 ms
65,900 KB
testcase_32 AC 54 ms
73,744 KB
testcase_33 AC 49 ms
64,928 KB
testcase_34 AC 54 ms
70,960 KB
testcase_35 AC 49 ms
66,184 KB
testcase_36 AC 45 ms
61,780 KB
testcase_37 AC 56 ms
75,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
N = list(map(int,list(input())))
n = len(N)
if n==1:
  print(N[0]*(N[0]+1)//2)
  exit()
lis = [1]*n
for i in range(1,n):
  lis[i] = lis[i-1]*45%MOD
dp1 = [0]*n
dp2 = [0]*n
dp3 = [0]*n
dp2[0] = lis[0]*((N[-1]-1)*N[-1]//2)%MOD
for i in range(1,n):
  if N[-i-1]>0:
    dp2[i] = lis[i]*((N[-i-1]-1)*N[-i-1]//2)%MOD
  dp3[i] = dp3[i-1]+lis[i]
dp1[0] = N[-1]
for i in range(1,n):
  if N[-i-1]>0:
    dp1[i] = (dp1[i-1]+dp2[i-1])*N[-i-1]%MOD
print((dp1[-1]+dp2[-1]+dp3[-1])%MOD)
0