質問内容
書いたコードの計算が終わりません。
何が問題なのでしょうか?
どうぞよろしくお願い致します。
python
1A, B, X = map(int,input().split()) 2 3def N_prices(n): 4 return(A*n + B*(len(str(n)))) 5 6if X <= N_prices(0): 7 print('0') 8 9if N_prices(10**9) <= X: 10 print('109') 11 12for i in range(1, 10**9): 13 if N_prices(i) <=X and X<=N_prices(i+1): 14 print(str(i))
環境
python3.7.3, jupyter notebook
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/01 12:10
2019/12/01 12:12
2019/12/01 12:13
2019/12/01 12:17
2019/12/01 12:22