題目:
1第一列為商品成本**
2第二列為商品賣出**
3第三列為本金
4要求:
5 1.每種商品只能**賣出一次
6 2.求最大收益78
例子:9
輸入:10 3,1,5,4,3
11 4,7,6,6,4
12 16
1314
輸出:15 27
16 (先**前四種,然後賣出,再**第五種)
**:
1#@author :whycai2#
@time :2021/2/23 22:0034
import
sys5
if__name__ == "
__main__":
6#取值7 cost =sys.stdin.readline().strip()
8 sell =sys.stdin.readline().strip()
9 price =int(sys.stdin.readline().strip())
10 cost = list(map(int, cost.split(','
)))11 sell = list(map(int, sell.split(','
)))1213#
取成本和賣出**差
14 profit = list(map(lambda x: x[1]-x[0], zip(cost, sell)))
15 sur =price16#
乙個乙個取值,如果成本價大餘額,則跳出
17for i in
range(len(cost)):
18if sur >cost[i]:
19 surnew = sur - cost[i] +profit[i]
20 sur =surnew
21else:22
break
23 endprice = price +sur
24print(endprice)
python書中練習題 python練習題
1 定義乙個空列表,接收從鍵盤輸入的整數,把列表傳給乙個從大到小排序的函式,再輸出排序後的列表的值 listex b 0 a int input 請輸入列表長度 while b a num int input 請輸入字元 b 1 print listex sum 0 for i in range 0...
python的練習題 Python練習題
1 使用while迴圈輸入1 2 3 4 5 6 8 9 10 i 0while i 10 i i 1 if i 7 continue print i 結果 e python python python test.py1 2 求1 100的所有數的和 i 0sum 0 while i 100 i 1...
python練習題目
三色球問題 有紅 黃 藍三種顏色的求,其中紅球 3 個,黃球 3 個,綠球 6 個。先將這 12 個球混合放在乙個盒子中,從中任意摸出 8 個球,程式設計計算摸出球的各種顏色搭配。print red tyellow tblue for red inrange 0,4 for yellow in ra...