結果

問題 No.1407 Kindness
ユーザー 👑 KazunKazun
提出日時 2021-02-26 22:00:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-10-02 14:42:23
合計ジャッジ時間 3,022 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 35 ms
52,480 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 36 ms
52,480 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 70 ms
84,480 KB
testcase_13 AC 50 ms
64,640 KB
testcase_14 AC 52 ms
66,560 KB
testcase_15 AC 56 ms
74,880 KB
testcase_16 AC 53 ms
69,964 KB
testcase_17 AC 51 ms
66,944 KB
testcase_18 AC 51 ms
66,432 KB
testcase_19 AC 55 ms
73,432 KB
testcase_20 AC 54 ms
71,552 KB
testcase_21 AC 47 ms
61,952 KB
testcase_22 AC 48 ms
62,336 KB
testcase_23 AC 53 ms
70,912 KB
testcase_24 AC 71 ms
84,864 KB
testcase_25 AC 50 ms
66,688 KB
testcase_26 AC 52 ms
69,248 KB
testcase_27 AC 46 ms
62,208 KB
testcase_28 AC 55 ms
74,496 KB
testcase_29 AC 45 ms
60,672 KB
testcase_30 AC 71 ms
84,184 KB
testcase_31 AC 49 ms
64,512 KB
testcase_32 AC 52 ms
73,344 KB
testcase_33 AC 47 ms
64,896 KB
testcase_34 AC 52 ms
70,016 KB
testcase_35 AC 48 ms
64,128 KB
testcase_36 AC 44 ms
60,800 KB
testcase_37 AC 69 ms
85,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()

Mod=10**9+7

X=[0]*(10)
X[0]=0
for i in range(1,10):
    X[i]=X[i-1]+i

DP=[[0,0] for _ in range(len(N))]

n=int(N[0])
DP[0][0]=X[n]
DP[0][1]=X[n-1]

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

    if r!=0:
        D[0]=((E[0]+1)*X[r  ]+(E[1]+1)*(X[9]-X[r]))%Mod
        D[1]=((E[0]+1)*X[r-1]+(E[1]+1)*(X[9]-X[r-1]))%Mod
    else:
        D[0]=D[1]=(E[1]+1)*(X[9]-X[0])%Mod
print(DP[-1][0])
0