题解 1197: 发工资咯

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1197: 发工资咯

摘要:解题思路:注意事项:参考代码:def coin_change(n):     coins = [100, 50, 10, 5, 2, 1]     num = []     for coin i……

Python代码,大道至简

摘要:解题思路:注意事项:参考代码:while True:    n = list(map(int,input().split()))    if n[0] == 0:        exit(0)    ……

1197: 发工资咯(贪心算法)

摘要:核心:票票从大开始扣,数量是最少的代码:while True:     l = [int(x) for x in input().split()]     n = l[0]     if n =……

发工资咯(python)

摘要:解题思路:注意事项:参考代码:while True:    n, *salaries = list(map(int, input().split()))    if n == 0:        br……

发工资咯!(python代码,思路清晰)

摘要:解题思路:注意事项:    数据需要横向输入参考代码:b = 0money = 0sum1 = 0sum2 = 0while True:             # 输入数据,必须要横向输入    a……

发工资咯 (Python代码)

摘要:注记:python里有个内建函数divmod,挺适合这道题的,哈哈哈 ```python def cal(n): N1, remainder = divmod(n, 100) ……

贪心+for+if求解

摘要: **本题主要用来贪心的思想。试想一下,我们怎么能使所发工资人民币的张数最小,是不是我们要尽可能的让程序猿领到最大面额的那几张,例如有一个程序猿的工资是3元,那么人民币张数最小的配法就是 2+1=3……