阿头啊
阿头啊
全部文章
分类
题解(10)
归档
标签
去牛客网
登录
/
注册
阿头啊的博客
全部文章
(共10篇)
题解 | #求1+2+3+...+n#这不直接等差数列还等啥?
class Solution: def Sum_Solution(self , n: int) -> int: # write code here res=((1+n)*n)//2 return res
Python3
2022-04-22
2
341
题解 | #自动售货系统#不会递归太不容易了同志们
s=input().split(';') name=['A1','A2','A3','A4','A5','A6'] cos=[2,3,4,5,8,6] val=[1,2,5,10] balance=0 def c(mon_mach_f,balance_f): for a1 in range(...
Python3
2022-04-04
3
630
题解 | #矩阵乘法计算量估算#
s=input().split('.') if len(s)==4:#长度确认 for i in s: if i.isdigit():#数字确认 if str(int(i))==i:#筛选01这样的数字 if int(i...
Python3
2022-04-03
1
363
题解 | #矩阵乘法计算量估算#
n=int(input()) num=[] for i in range(n): num.append(input().split()) s=input() #print(num) def f(a,lst,n): n+=int(lst[a][0])*int(lst[a][1])*in...
Python3
2022-04-02
0
354
题解 | #学英语#
num=str(input()) dic1=['','one','two','three','four','five','six','seven','eight','nine'] dic2=['ten','eleven','twelve','thirteen','fourteen','fifteen...
Python3
2022-03-30
0
382
题解 | #判断两个IP是否属于同一子网#
while True: try: m=input().split('.') ip_1=input().split('.') ip_2=input().split('.') error=0 dif=0 ...
Python3
2022-03-30
0
373
题解 | #字符串合并处理#
def step_1(a,b):#第一步操作 c=str(a)+str(b) return c def step_2(a):#第二步操作 odd=[] even=[] for i in range(len(a)): if i%2 == 0: ...
Python3
2022-03-28
1
472
题解 | #字符串加解密#
def on(i):#加密函数 if i.isalpha(): if i == 'z': return 'A' elif i == 'Z': return 'a' elif i.isupper()...
Python3
2022-03-28
4
362
题解 | #数据分类处理#
from collections import defaultdict#导入包 l=input().split(' ')[1:] R=input().split(' ')[1:] R = [int(x) for x in R]#要先改格式不然会按字符串排序规则排序,比如说排成[16,26,4] r=...
Python3
数组
字符串
哈希表
数学
2022-03-27
2
551
题解 | #删除字符串中出现次数最少的字符#
a=20#初始值 for i in str: if str.count(i)<=a: a=str.count(i)#更新最小值 else: continue for i in str: if str.count(i)==a: ...
Python3
字符串
数学
2022-03-26
39
1419