1197: 发工资咯(贪心算法)
摘要:核心:票票从大开始扣,数量是最少的代码:while True:
l = [int(x) for x in input().split()]
n = l[0]
if n =……
1197: 发工资咯
摘要:解题思路:注意事项:参考代码:def coin_change(n):
coins = [100, 50, 10, 5, 2, 1]
num = []
for coin i……
发工资咯(Java题解+递归+数组)
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { // 定义人民币面额数组 static int[] denomina……
小白随便写的,记录一下
摘要:```python
rmb = [100, 50, 10, 5, 2, 1]
def change_money(li):
new_li = [0 for i in range(len(r……
6个if,暴力枚举法
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
public class Main {
public static void main(String[……
发工资咯(python)
摘要:解题思路:注意事项:参考代码:while True: n, *salaries = list(map(int, input().split())) if n == 0: br……