题解列表

筛选

2814: 正常血压

摘要:参考代码:n = int(input()) count = [] h = 0 for i in range(n):     x, y = map(int, input().split()) ……

2813: 药房管理

摘要:参考代码:m = int(input()) n = int(input()) arr = list(map(int, input().split())) k = 0 for i in rang……

1332: 津津的储蓄计划

摘要:参考代码:estimate = [int(input()) for i in range(12)]    #预算 amount = 0   #零花钱 bank = [] flag = True……

数据结构-八进制数

摘要:解题思路:注意事项:参考代码:while True:    try:        n = int(input())        oct_num = oct(n)        print(oct_……