結果

問題 No.1407 Kindness
ユーザー 👑 KazunKazun
提出日時 2021-02-27 00:32:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 1,162 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-10-02 16:39:25
合計ジャッジ時間 4,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 41 ms
51,584 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 93 ms
84,480 KB
testcase_13 AC 68 ms
69,632 KB
testcase_14 AC 68 ms
70,656 KB
testcase_15 AC 88 ms
83,712 KB
testcase_16 AC 69 ms
73,856 KB
testcase_17 AC 68 ms
70,912 KB
testcase_18 AC 69 ms
72,064 KB
testcase_19 AC 83 ms
82,944 KB
testcase_20 AC 81 ms
81,792 KB
testcase_21 AC 62 ms
65,664 KB
testcase_22 AC 63 ms
66,432 KB
testcase_23 AC 81 ms
81,152 KB
testcase_24 AC 90 ms
85,120 KB
testcase_25 AC 66 ms
70,656 KB
testcase_26 AC 68 ms
72,960 KB
testcase_27 AC 62 ms
65,920 KB
testcase_28 AC 86 ms
83,712 KB
testcase_29 AC 57 ms
63,744 KB
testcase_30 AC 90 ms
84,096 KB
testcase_31 AC 66 ms
68,992 KB
testcase_32 AC 82 ms
83,072 KB
testcase_33 AC 58 ms
66,816 KB
testcase_34 AC 61 ms
71,936 KB
testcase_35 AC 57 ms
66,304 KB
testcase_36 AC 54 ms
63,104 KB
testcase_37 AC 83 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(s,t):
    if s<=t:
        return (s+t)*(t-s+1)//2
    else:
        return 0

N=input()

Mod=10**9+7

DP=[[0,0] for _ in range(len(N))]
X=[x*(x+1)//2 for x in range(10)]

n=int(N[0])
DP[0][0]=n*(n+1)//2
DP[0][1]=n*(n-1)//2

for i,r in enumerate(N[1:],1):
    D=DP[i]
    E=DP[i-1]
    r=int(r)

    D[0]=((E[0]+1)*f(0,r)  +(E[1]+1)*f(r+1,9))%Mod
    D[1]=((E[0]+1)*f(0,r-1)+(E[1]+1)*f(r  ,9))%Mod
print(DP[-1][0])
0