牛客857079027号
牛客857079027号
全部文章
分类
未归档(1)
题解(60)
归档
标签
去牛客网
登录
/
注册
牛客857079027号的博客
全部文章
(共52篇)
题解 | #输入n个整数,输出其中最小的k个#
while True: try: a,b =map(int, input().split()) c =list(map(int, input().split())) d = sorted(c) print(' '.join(ma...
Python3
2021-12-21
0
302
题解 | #记负均正II#
#获取全部输入b try: b = [] while True: a = input() if a=='': #无输入break break b.append(a) except: pass c ...
Python3
2021-12-21
0
256
题解 | #整型数组合并#
while True: try: a = input() b = map(int,input().split()) c = input() d = map(int,input().split()) e = [] ...
Python3
2021-12-21
3
450
题解 | #二维数组操作#
注意初始化范围19,但行列号08 while True: try: a, b = map(int,input().split()) c, d, e, f = map(int, input().split()) g = int(input()) ...
Python3
2021-12-21
0
320
元音大小写
做题别紧张,多测试 a=input().lower() yuan =['a','e','i','o','u'] p = '' for i in a: if i in yuan: i = i.upper() p = p+i else: p...
Python3
2021-12-20
0
332
题解 | #数组分组#
while True: try: a = int(input()) b = list(map(int,input().split())) g1 = [] g2 = [] g3 = [] ...
Python3
2021-12-20
0
364
题解 | #24点游戏算法#
答案里经常出现的help函数算递归解的方法没办法计算两个乘号一个加号的情况 测试可以考虑基础情况(64),无法实现24的情况(1004),一定要有优先级的情况(2 2 10 1),无法递归解的情况(2 2 7 5) import itertools#注意两个乘法一个加法和需要括号才能凑24点的情况!...
Python3
2021-12-20
4
505
题解 | #放苹果#
把大问题分解为两个子问题通过递归实现 程序的出口需要考虑n和m的不同情况:大于小于和等于 大于:全满是不可能的,一个程序出口 等于:m==0 n==1出口 小于:n==1 m==1 m==0出口(小于可能被递减成等于)只有一个水果时不管剩几个盘子都只有一种方法,只有一个盘子时不管几个水果也只有一种方...
Python3
2021-12-19
0
353
题解 | #自守数#
while True: try: a = int(input()) res = 0 for i in range(a+1): b =str(i * i) if ...
Python3
2021-12-19
0
235
题解 | #DNA序列#
while True: try: a = input() n = int(input()) res = [] d = {} s = [] #取出所有子序列 for i in ran...
Python3
2021-12-18
1
371
首页
上一页
1
2
3
4
5
6
下一页
末页