質問内容
なぜSyntaxError: can't assign to function callが出るのかわかりません。
以下のコードを実行した際、N_prices(n) = An + B(len(str(n)))に発生します。
ptyhon
1nums = [int(e) for e in input().split()] #A, B, X 2A, B, X = nums[0], nums[1], nums[2] 3 4N_prices(n) = A*n + B*(len(str(n))) 5if X <= N_prices(0): 6 print('0') 7 8if N_prices(10**9) <= X: 9 print('109') 10 11for i in range(1, 10**9): 12 if X <= N_prices(i) and X<=N_prices(i+1): 13 print(str(i))
どうぞよろしくお願い致します。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。