結果

問題 No.1407 Kindness
ユーザー pluto77pluto77
提出日時 2021-03-14 15:56:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 67,244 KB
最終ジャッジ日時 2024-11-06 05:45:45
合計ジャッジ時間 4,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,176 KB
testcase_01 AC 40 ms
52,688 KB
testcase_02 AC 40 ms
51,828 KB
testcase_03 AC 38 ms
52,672 KB
testcase_04 AC 40 ms
53,424 KB
testcase_05 AC 39 ms
53,072 KB
testcase_06 AC 40 ms
52,488 KB
testcase_07 AC 40 ms
52,268 KB
testcase_08 AC 40 ms
52,696 KB
testcase_09 AC 39 ms
52,404 KB
testcase_10 AC 38 ms
52,904 KB
testcase_11 AC 38 ms
52,728 KB
testcase_12 AC 119 ms
63,556 KB
testcase_13 AC 61 ms
60,972 KB
testcase_14 AC 66 ms
61,224 KB
testcase_15 AC 112 ms
64,144 KB
testcase_16 AC 86 ms
63,160 KB
testcase_17 AC 72 ms
61,932 KB
testcase_18 AC 70 ms
62,060 KB
testcase_19 AC 105 ms
63,460 KB
testcase_20 AC 94 ms
64,428 KB
testcase_21 AC 50 ms
60,692 KB
testcase_22 AC 51 ms
60,908 KB
testcase_23 AC 93 ms
62,396 KB
testcase_24 AC 126 ms
63,960 KB
testcase_25 AC 72 ms
61,468 KB
testcase_26 AC 81 ms
62,144 KB
testcase_27 AC 51 ms
61,132 KB
testcase_28 AC 110 ms
63,500 KB
testcase_29 AC 48 ms
60,452 KB
testcase_30 AC 118 ms
64,728 KB
testcase_31 AC 61 ms
60,944 KB
testcase_32 AC 110 ms
67,244 KB
testcase_33 AC 69 ms
62,980 KB
testcase_34 AC 94 ms
65,352 KB
testcase_35 AC 65 ms
64,148 KB
testcase_36 AC 50 ms
62,288 KB
testcase_37 AC 127 ms
64,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1407
mod=10**9+7
n=input()
res=0
for i in range(len(n)-1):
 res+=pow(45,i+1,mod)
 res%=mod
cur=1
for i in range(len(n)-1):
 m=int(n[i])
 res+=cur*m*(m-1)//2*pow(45,len(n)-i-1,mod)%mod
 cur*=m
 cur%=mod
 res%=mod
print((res+cur*int(n[-1])*(int(n[-1])+1)//2)%mod)
0